Ejemplo n.º 1
0
        /**
         * Masks a file with an image given a file and image.
         */
        public static string[] Mask(string file, string image)
        {
            //Create a new Bitmap objects and map pixels/bits.
            var img = new Bitmap(image);

            Color[] pixels = GetPixels(img);
            var pixelBits = new int[pixels.Length];

            for (int n = 0, length = pixels.Length; n < length; n++)
                pixelBits[n] = Util.ColorToBits(pixels[n]);

            //Read all bits from the file to mask.
            byte[] bytes = File.ReadAllBytes(file);
            var bits = new BitArray(bytes);

            //Merge bits.
            var tour = new Tour(img.Width, img.Height);
            pixelBits = Merge(bits, tour, pixelBits);

            //Generate pixel colors based on each the merged bits.
            for (int n = 0, length = pixelBits.Length; n < length; n++)
                pixels[n] = Util.BitsToColor(pixelBits[n]);

            Bitmap maskedImage = CreateImage(img.Width, img.Height, pixels);

            //Save the new image.
            string dir = Path.GetDirectoryName(image);
            string name = Path.GetFileNameWithoutExtension(image);
            string extension = Path.GetExtension(image);

            Benchmark mark = new Benchmark("Time to Write Masked File", true);

            maskedImage.Save(dir + "\\" + name + " - Masked" + extension);

            mark.Time();

            //Generate AES keys and return.
            mark = new Benchmark("Time to Generate Encryption Keys", true);

            string[] hash = Crypt.Encrypt(Path.GetFileName(file) + ":" + bits.Length + ":" + tour.Export());

            mark.Time();

            return hash;
        }
Ejemplo n.º 2
0
        /**
         * Merges colors represented as 32-bit integers with an array of bits
         * from a given file.
         */
        private static int[] Merge(BitArray bits, Tour tour, int[] pixels)
        {
            //Clone pixels to prevent destruction.
            var newPixels = (int[]) pixels.Clone();

            Benchmark mark = new Benchmark("Time to Generate Tour", true);

            Square start = tour.CreateTour();
            Square current = start;

            mark.Time();

            mark = new Benchmark("Time to Modify Pixel Channels", true);

            for (int n = 0, length = bits.Length; n < length; n += 3)
            {
                //Calculate the bit depth to use.
                int depth = n/newPixels.Length;

                //Select the pixel to operate on and get the color channels.
                int index = Util.ToIndex(tour.Width, current.X, current.Y);
                int pixel = newPixels[index];

                //Get channel values and create a bool representation.
                int r = (pixel >> 16) & 0xFF;
                int g = (pixel >> 8) & 0xFF;
                int b = pixel & 0xFF;

                bool red = bits[n];
                bool green = n + 1 < length && bits[n + 1];
                bool blue = n + 2 < length && bits[n + 2];

                //Set pixel channel values based on the above bools.
                if (red) r = r | 1 << depth;
                else r = r & ~(1 << depth);

                if (green) g = g | 1 << depth;
                else g = g & ~(1 << depth);

                if (blue) b = b | 1 << depth;
                else b = b & ~(1 << depth);

                newPixels[index] = Util.BitsToColor(r, g, b);

                //Select the next pixel to manipulate.
                current = current.Next ?? start;
            }

            mark.Time();

            return newPixels;
        }
Ejemplo n.º 3
0
        /**
         * Mask the specified image and file.
         */
        private void MaskImage()
        {
            run.Text = Resources.Frame_MaskImage_Running___;

            Benchmark mark = new Benchmark("Time To Mask Image", true);

            string[] h = Masker.Mask(selectedFile.Text, selectedImage.Text);

            mark.Time();

            string dir = Path.GetDirectoryName(selectedImage.Text);
            string name = Path.GetFileNameWithoutExtension(selectedImage.Text);

            File.WriteAllText(dir + "\\" + name + ".hash", h[0]);
            File.WriteAllText(dir + "\\" + name + ".key", h[1]);

            run.Text = Resources.Frame_UnmaskImage_Run_File_Mask;
        }