Example #1
0
        /// <summary>
        /// encrypts an image
        /// </summary>
        /// <param name="image">the image that will be encrypted</param>
        /// <param name="roIs">the Region of Interests</param>
        /// <param name="password">the password used for encryption</param>
        /// <param name="cryptoFlags">determines which encryption mode will be applied</param>
        /// <param name="errorCode">if an error occurs this value will be set is not 0</param>
        /// <returns>returns an encrypted image</returns>
        public static Image EncryptJPG(Image image, IList <RoI> roIs, string password, CryptoFlags cryptoFlags, out EnumErrorCode errorCode)
        {
            // create JpegOperation from business logic
            IBusinessLogic businessLogic = new BusinessLogic();
            IJpegOperation jpegOperation = businessLogic.CreateJpegOperationBL();

            // convert Image to byte array
            byte[] in_jpegToEncrypt = jpegOperation.ConvertImageToByteArray(image);
            Int32  in_size          = in_jpegToEncrypt.Length;

            // convert RoIs to the correct format
            int counter = 0;

            Int32[] in_roiArray = new Int32[roIs.Count() * 4];
            foreach (RoI roi in roIs)
            {
                in_roiArray[(counter * 4) + 0] = roIs[counter].X;
                in_roiArray[(counter * 4) + 1] = roIs[counter].Y;
                in_roiArray[(counter * 4) + 2] = roIs[counter].Width;
                in_roiArray[(counter * 4) + 3] = roIs[counter].Height;
                counter++;
            }
            Int32 in_roiArraySize = roIs.Count() * 4;

            // create MD5 hash of the password
            MD5 md5 = new MD5CryptoServiceProvider();

            byte[] textToHash           = Encoding.Default.GetBytes(password);
            byte[] in_encryptionKey     = md5.ComputeHash(textToHash);
            Int32  in_encryptionKeySize = in_encryptionKey.Length;

            // convert crypto flags
            byte in_cryptoFlags = cryptoFlags.ToByte();

            // get memory for the encrypted image
            byte[] out_jpegEncrypted     = new byte[in_size * 2];
            byte[] out_statistics        = new byte[in_size];
            IntPtr out_jpegEncryptedSize = new IntPtr();

            int[]    ia2  = new int[1];
            GCHandle gch1 = GCHandle.Alloc(ia2);

            out_jpegEncryptedSize = Marshal.UnsafeAddrOfPinnedArrayElement(ia2, 0);

            // create a pointer for the error code (will be set from C-code)
            IntPtr out_errorCode = new IntPtr();

            int[]    ia  = new int[1];
            GCHandle gch = GCHandle.Alloc(ia);

            out_errorCode = Marshal.UnsafeAddrOfPinnedArrayElement(ia, 0);

            // now try to call the encryption algorithm
            try
            {
                encJpeg(
                    in_jpegToEncrypt,
                    in_size,
                    in_roiArray,
                    in_roiArraySize,
                    in_encryptionKey,
                    in_encryptionKeySize,
                    in_cryptoFlags,
                    out_jpegEncrypted,
                    ref out_jpegEncryptedSize,
                    ref out_errorCode
                    );

                // get the error code
                errorCode = ConvertIntToErrorCode(out_errorCode.ToInt32());

                // truncate byte array
                out_jpegEncrypted = out_jpegEncrypted.Take(out_jpegEncryptedSize.ToInt32()).ToArray();
            }
            catch
            {
                throw new EncryptionException("Error while encrypting!");
            }

            // convert byte array to Image and return
            return(jpegOperation.ConvertByteArrayToImage(out_jpegEncrypted));
        }
Example #2
0
        public void Test_Encryption_Swap_Values()
        {
            IBusinessLogic businessLogic = BLFactory.CreateBusinessLogic();
            IJpegOperation jpegOperation = businessLogic.CreateJpegOperationBL();

            EnumErrorCode errorCode;

            byte[] planeHEX = { 0xff, 0xd8, 0xff, 0xe0, 0x00, 0x10, 0x4a, 0x46, 0x49, 0x46, 0x00, 0x01, 0x01, 0x01, 0x00, 0x60, 0x00, 0x60, 0x00, 0x00, 0xff, 0xe1, 0x00, 0x68, 0x45, 0x78, 0x69, 0x66, 0x00, 0x00, 0x4d, 0x4d, 0x00, 0x2a, 0x00, 0x00, 0x00, 0x08, 0x00, 0x04, 0x01, 0x1a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x3e, 0x01, 0x1b, 0x00, 0x05, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x46, 0x01, 0x28, 0x00, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x01, 0x31, 0x00, 0x02, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x4e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x60, 0x00, 0x00, 0x00, 0x01, 0x50, 0x61, 0x69, 0x6e, 0x74, 0x2e, 0x4e, 0x45, 0x54, 0x20, 0x76, 0x33, 0x2e, 0x35, 0x2e, 0x31, 0x30, 0x00, 0xff, 0xdb, 0x00, 0x43, 0x00, 0x08, 0x06, 0x06, 0x07, 0x06, 0x05, 0x08, 0x07, 0x07, 0x07, 0x09, 0x09, 0x08, 0x0a, 0x0c, 0x14, 0x0d, 0x0c, 0x0b, 0x0b, 0x0c, 0x19, 0x12, 0x13, 0x0f, 0x14, 0x1d, 0x1a, 0x1f, 0x1e, 0x1d, 0x1a, 0x1c, 0x1c, 0x20, 0x24, 0x2e, 0x27, 0x20, 0x22, 0x2c, 0x23, 0x1c, 0x1c, 0x28, 0x37, 0x29, 0x2c, 0x30, 0x31, 0x34, 0x34, 0x34, 0x1f, 0x27, 0x39, 0x3d, 0x38, 0x32, 0x3c, 0x2e, 0x33, 0x34, 0x32, 0xff, 0xdb, 0x00, 0x43, 0x01, 0x09, 0x09, 0x09, 0x0c, 0x0b, 0x0c, 0x18, 0x0d, 0x0d, 0x18, 0x32, 0x21, 0x1c, 0x21, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0x32, 0xff, 0xc0, 0x00, 0x11, 0x08, 0x00, 0x64, 0x00, 0x96, 0x03, 0x01, 0x22, 0x00, 0x02, 0x11, 0x01, 0x03, 0x11, 0x01, 0xff, 0xc4, 0x00, 0x1f, 0x00, 0x00, 0x01, 0x05, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, 0xb5, 0x10, 0x00, 0x02, 0x01, 0x03, 0x03, 0x02, 0x04, 0x03, 0x05, 0x05, 0x04, 0x04, 0x00, 0x00, 0x01, 0x7d, 0x01, 0x02, 0x03, 0x00, 0x04, 0x11, 0x05, 0x12, 0x21, 0x31, 0x41, 0x06, 0x13, 0x51, 0x61, 0x07, 0x22, 0x71, 0x14, 0x32, 0x81, 0x91, 0xa1, 0x08, 0x23, 0x42, 0xb1, 0xc1, 0x15, 0x52, 0xd1, 0xf0, 0x24, 0x33, 0x62, 0x72, 0x82, 0x09, 0x0a, 0x16, 0x17, 0x18, 0x19, 0x1a, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xff, 0xc4, 0x00, 0x1f, 0x01, 0x00, 0x03, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0xff, 0xc4, 0x00, 0xb5, 0x11, 0x00, 0x02, 0x01, 0x02, 0x04, 0x04, 0x03, 0x04, 0x07, 0x05, 0x04, 0x04, 0x00, 0x01, 0x02, 0x77, 0x00, 0x01, 0x02, 0x03, 0x11, 0x04, 0x05, 0x21, 0x31, 0x06, 0x12, 0x41, 0x51, 0x07, 0x61, 0x71, 0x13, 0x22, 0x32, 0x81, 0x08, 0x14, 0x42, 0x91, 0xa1, 0xb1, 0xc1, 0x09, 0x23, 0x33, 0x52, 0xf0, 0x15, 0x62, 0x72, 0xd1, 0x0a, 0x16, 0x24, 0x34, 0xe1, 0x25, 0xf1, 0x17, 0x18, 0x19, 0x1a, 0x26, 0x27, 0x28, 0x29, 0x2a, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3a, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4a, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5a, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9, 0xca, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xff, 0xda, 0x00, 0x0c, 0x03, 0x01, 0x00, 0x02, 0x11, 0x03, 0x11, 0x00, 0x3f, 0x00, 0xf7, 0xdd, 0xab, 0xfd, 0xd1, 0xf9, 0x52, 0xed, 0x5f, 0x41, 0x49, 0x9a, 0x33, 0x59, 0x29, 0x21, 0x8b, 0xb5, 0x7f, 0xba, 0x3f, 0x2a, 0x36, 0x2f, 0xa0, 0xfc, 0xa8, 0xcd, 0x19, 0xab, 0x4d, 0x08, 0x36, 0x2f, 0xf7, 0x47, 0xe5, 0x49, 0xe5, 0xa7, 0xf7, 0x47, 0xe5, 0x55, 0x6f, 0xb5, 0x3b, 0x7d, 0x39, 0x54, 0xce, 0x4e, 0x5b, 0xa0, 0x51, 0x93, 0x57, 0x01, 0xc8, 0xa9, 0x53, 0x84, 0xa4, 0xe2, 0x9e, 0xa8, 0x6d, 0x34, 0xae, 0xc6, 0xf9, 0x51, 0xff, 0x00, 0x71, 0x7f, 0x2a, 0x3c, 0xa4, 0xfe, 0xe2, 0xfe, 0x54, 0xea, 0x2a, 0xf4, 0x10, 0xcf, 0x26, 0x2f, 0xf9, 0xe6, 0x9f, 0xf7, 0xcd, 0x1e, 0x44, 0x5f, 0xf3, 0xcd, 0x3f, 0xef, 0x91, 0x4f, 0xa2, 0x8d, 0x00, 0x8f, 0xc8, 0x87, 0xfe, 0x79, 0x27, 0xfd, 0xf2, 0x29, 0x3e, 0xcd, 0x07, 0xfc, 0xf1, 0x8f, 0xfe, 0xf9, 0x15, 0x2d, 0x14, 0xc0, 0x8b, 0xec, 0xf0, 0x7f, 0xcf, 0x18, 0xff, 0x00, 0xef, 0x91, 0x47, 0xd9, 0xa0, 0xff, 0x00, 0x9e, 0x31, 0xff, 0x00, 0xdf, 0x22, 0xa5, 0xa2, 0x96, 0x80, 0x45, 0xf6, 0x58, 0x3f, 0xe7, 0x8c, 0x7f, 0xf7, 0xc0, 0xa4, 0x36, 0xb6, 0xe7, 0xac, 0x11, 0x7f, 0xdf, 0x02, 0xa6, 0xa2, 0x8d, 0x00, 0x87, 0xec, 0x96, 0xff, 0x00, 0xf3, 0xc2, 0x2f, 0xfb, 0xe0, 0x50, 0x6c, 0xed, 0x8f, 0x5b, 0x78, 0xbf, 0xef, 0x81, 0x53, 0x51, 0x46, 0x80, 0x41, 0xf6, 0x1b, 0x4f, 0xf9, 0xf5, 0x87, 0xfe, 0xfd, 0x8a, 0x2a, 0x7a, 0x29, 0x80, 0xcc, 0xd1, 0x4c, 0xdc, 0x29, 0xc0, 0xd7, 0x1a, 0x91, 0x56, 0x1c, 0x0d, 0x2e, 0x69, 0xa0, 0xd6, 0x0f, 0x8d, 0x35, 0xcf, 0xf8, 0x47, 0xbc, 0x27, 0x7f, 0xa8, 0x2b, 0x62, 0x65, 0x8f, 0x64, 0x3f, 0xf5, 0xd1, 0xb8, 0x5f, 0xcb, 0x39, 0xfc, 0x2a, 0xe3, 0x2b, 0x88, 0xf3, 0x6b, 0xcd, 0x42, 0x5f, 0x17, 0xfc, 0x65, 0xb6, 0xb3, 0x82, 0x67, 0xfb, 0x15, 0x9c, 0xbb, 0x4e, 0xc6, 0x20, 0x14, 0x8b, 0x2c, 0xd9, 0xc7, 0x62, 0xd9, 0x1f, 0x88, 0xaf, 0x69, 0xaf, 0x1d, 0xf8, 0x27, 0xa7, 0x35, 0xc4, 0xba, 0x9e, 0xb9, 0x24, 0x60, 0x05, 0x55, 0xb3, 0x88, 0x81, 0xd4, 0xf0, 0xce, 0x7f, 0xf4, 0x0f, 0xd6, 0xbd, 0x87, 0x35, 0x6e, 0x49, 0x31, 0xb1, 0x68, 0xcd, 0x26, 0x68, 0xcd, 0x3e, 0x61, 0x0b, 0x9a, 0x29, 0x33, 0x4b, 0x9a, 0x39, 0x80, 0x33, 0x46, 0x69, 0x33, 0x45, 0x1c, 0xc0, 0x2e, 0x69, 0x73, 0x4d, 0xa2, 0x8e, 0x60, 0x1d, 0x9a, 0x33, 0x4d, 0xa3, 0x34, 0x73, 0x80, 0xb9, 0xa3, 0x34, 0x94, 0x66, 0x97, 0x38, 0x0e, 0xa2, 0x90, 0x1a, 0x2b, 0x54, 0xee, 0x84, 0x53, 0x0f, 0x8a, 0x78, 0x92, 0xa9, 0xf9, 0xb5, 0x9d, 0xaf, 0x26, 0xa5, 0x73, 0xa5, 0x3c, 0x3a, 0x53, 0xa2, 0x4e, 0xe4, 0x02, 0xcc, 0xfb, 0x48, 0x5e, 0xf8, 0x38, 0xeb, 0x5c, 0x2c, 0xe8, 0xb2, 0x37, 0xfc, 0xc5, 0x1d, 0x48, 0x15, 0xe5, 0xdf, 0x1a, 0x25, 0xbb, 0xbe, 0xb3, 0xd1, 0xb4, 0x9b, 0x08, 0x9e, 0x69, 0x2e, 0x6e, 0x09, 0xda, 0x83, 0x23, 0x77, 0x0a, 0xa0, 0x9e, 0xdf, 0x7c, 0xfe, 0x55, 0x55, 0xfc, 0x51, 0x7d, 0x63, 0x7a, 0xf6, 0x5a, 0x82, 0x14, 0x9e, 0x13, 0xb5, 0x95, 0x8e, 0x7e, 0x9c, 0xf7, 0x1e, 0xf4, 0x5f, 0xfc, 0x40, 0xb0, 0xd2, 0xe2, 0x89, 0xee, 0xd2, 0x56, 0xde, 0x48, 0x53, 0x1a, 0xee, 0xc6, 0x39, 0xaf, 0x27, 0xfb, 0x4a, 0xb4, 0x6a, 0xf2, 0x46, 0x95, 0xdf, 0xaf, 0xfc, 0x03, 0xa3, 0xea, 0xb1, 0xe5, 0xe6, 0x72, 0x3d, 0x1b, 0xc2, 0x9a, 0x0c, 0x5e, 0x19, 0xf0, 0xd5, 0x96, 0x93, 0x11, 0x0c, 0x61, 0x4f, 0xde, 0xb8, 0x1f, 0x7e, 0x43, 0xcb, 0x37, 0xe2, 0x49, 0xfc, 0x31, 0x5b, 0x59, 0xaf, 0x18, 0xb1, 0xf8, 0xaf, 0xa3, 0xb4, 0xb2, 0x0f, 0x3a, 0xee, 0x12, 0xc7, 0x23, 0x7a, 0x63, 0xb0, 0xf4, 0x26, 0xb6, 0x34, 0xbf, 0x18, 0xde, 0x4e, 0xcd, 0xfd, 0x97, 0xab, 0xc3, 0xa8, 0x22, 0x8c, 0x98, 0x2e, 0xd3, 0x0c, 0x07, 0xb3, 0x80, 0x0f, 0xe6, 0x0d, 0x7a, 0x34, 0x6a, 0xd4, 0xa9, 0x7f, 0x69, 0x07, 0x1f, 0x53, 0x9e, 0x74, 0x92, 0xf8, 0x5d, 0xcf, 0x4f, 0xcd, 0x19, 0xae, 0x42, 0xd3, 0xc7, 0xd6, 0x61, 0x96, 0x2d, 0x5a, 0xd6, 0x6d, 0x39, 0xcf, 0x1b, 0xdb, 0xe7, 0x88, 0x9f, 0x66, 0x15, 0xd4, 0x5b, 0x5d, 0xdb, 0xde, 0x42, 0x26, 0xb6, 0x9e, 0x39, 0xa3, 0x3d, 0x1a, 0x36, 0x0c, 0x3f, 0x4a, 0xdd, 0xdd, 0x18, 0xd8, 0x9f, 0x34, 0x66, 0x9b, 0x91, 0x4b, 0x9a, 0x5c, 0xc0, 0x2e, 0x68, 0xcd, 0x26, 0x68, 0xa3, 0x99, 0x80, 0xb4, 0x66, 0x93, 0x34, 0x99, 0xa3, 0x98, 0x07, 0x66, 0x8c, 0xd3, 0x77, 0x52, 0x6e, 0xa5, 0xcc, 0x3b, 0x0e, 0xcd, 0x19, 0xa6, 0xef, 0xa3, 0x7d, 0x1c, 0xc1, 0x61, 0xe0, 0xd1, 0x4d, 0x56, 0xcd, 0x15, 0xac, 0x67, 0xa0, 0x9a, 0x30, 0x44, 0xb5, 0x22, 0xcb, 0x8e, 0xf5, 0x9a, 0x26, 0xe7, 0xad, 0x4a, 0xb3, 0x0f, 0x5a, 0x86, 0x68, 0x99, 0x91, 0xe3, 0xbd, 0x2b, 0x4c, 0xbc, 0xf0, 0xfd, 0xde, 0xa7, 0x77, 0x98, 0xa7, 0xb2, 0x81, 0xa4, 0x49, 0xd3, 0xa9, 0xc0, 0xc8, 0x53, 0xea, 0x09, 0xfe, 0x75, 0xe4, 0x3a, 0x8c, 0x57, 0x9a, 0x47, 0xd9, 0xe3, 0xd5, 0xa0, 0x11, 0xb4, 0xd0, 0x24, 0xeb, 0x1b, 0x10, 0xd8, 0x56, 0xf5, 0xf4, 0x3d, 0x46, 0x3d, 0xab, 0xd7, 0xbc, 0x41, 0x17, 0xf6, 0xaf, 0xd8, 0x74, 0x93, 0xcc, 0x33, 0xce, 0x25, 0xb8, 0x1d, 0x8c, 0x51, 0x90, 0xc4, 0x7e, 0x2d, 0xb0, 0x7e, 0x34, 0xcf, 0x15, 0xf8, 0x4e, 0xcf, 0xc5, 0x11, 0x47, 0x31, 0x2b, 0x15, 0xfc, 0x23, 0xf7, 0x53, 0x11, 0x90, 0x47, 0xf7, 0x58, 0x7a, 0x73, 0xf8, 0x56, 0x35, 0x28, 0xc2, 0x4a, 0xed, 0x6a, 0x69, 0x09, 0xb4, 0xfc, 0x8f, 0x1d, 0xbe, 0xf0, 0xc4, 0x6f, 0x0b, 0xbc, 0x12, 0x88, 0x0b, 0x00, 0x59, 0x4f, 0x28, 0xdf, 0x4e, 0xe3, 0x9f, 0x4f, 0xca, 0xb5, 0xfc, 0x1d, 0xa7, 0xdc, 0xd9, 0x43, 0x7f, 0x05, 0xce, 0x73, 0x38, 0x54, 0x47, 0x89, 0xc0, 0x62, 0xbc, 0x83, 0x8e, 0x46, 0x0f, 0x3e, 0xd5, 0x99, 0xaf, 0xae, 0xab, 0xa2, 0x5c, 0x0b, 0x1d, 0x42, 0xdd, 0xe2, 0x19, 0xca, 0xb9, 0xe5, 0x64, 0x1e, 0xaa, 0x7b, 0x8a, 0x86, 0xc3, 0x5b, 0x78, 0x5c, 0x7c, 0xe0, 0xae, 0x7a, 0x54, 0xd1, 0xa3, 0x56, 0x74, 0x5c, 0x2b, 0x3e, 0xbf, 0x90, 0x4e, 0xa4, 0x54, 0xef, 0x14, 0x76, 0x10, 0xde, 0x5f, 0x5b, 0xb1, 0x8a, 0xd7, 0x51, 0x8b, 0x50, 0x8b, 0x6f, 0xfa, 0xbb, 0xc4, 0x28, 0x48, 0xc0, 0xe0, 0x3e, 0x00, 0x3d, 0x40, 0xc1, 0x07, 0x9a, 0xd6, 0xb4, 0xb3, 0x96, 0x0c, 0x5c, 0xda, 0x3c, 0xda, 0x65, 0xd7, 0xf1, 0x08, 0x1f, 0x29, 0x9f, 0x42, 0x3a, 0x1f, 0xd2, 0xb9, 0x9b, 0x36, 0xd2, 0xee, 0x54, 0xfe, 0xe5, 0x23, 0x66, 0x52, 0xb9, 0x45, 0x00, 0x8c, 0x8c, 0x7a, 0x62, 0xb5, 0xed, 0x52, 0xf2, 0x2c, 0xad, 0xb6, 0xa9, 0x22, 0xa9, 0x25, 0x80, 0x64, 0x24, 0xfa, 0xf5, 0xce, 0x3a, 0x9f, 0x4a, 0xeb, 0x6b, 0xb1, 0x9d, 0xfb, 0x9d, 0x85, 0x9f, 0x8c, 0xb5, 0x3b, 0x15, 0xdb, 0xaa, 0xd9, 0x8b, 0x94, 0x1d, 0x2e, 0x2d, 0x86, 0x0f, 0xfc, 0x09, 0x7f, 0xc2, 0xb7, 0xf4, 0x5f, 0x12, 0xdb, 0x6b, 0x29, 0xe6, 0x43, 0x22, 0x70, 0xdb, 0x5a, 0x3e, 0x8c, 0xbc, 0x64, 0x1f, 0x71, 0xc5, 0x70, 0x76, 0x77, 0x17, 0x69, 0x19, 0x4b, 0xc9, 0x96, 0x5c, 0x64, 0x86, 0x54, 0x1b, 0x88, 0xeb, 0xd8, 0x02, 0x7f, 0x3a, 0x8e, 0xcd, 0x62, 0xb8, 0x8d, 0x6e, 0x0e, 0xe4, 0x9c, 0xb1, 0xdc, 0x57, 0x28, 0xc7, 0x07, 0x38, 0x61, 0xdf, 0xe8, 0x7d, 0xaa, 0x5a, 0x57, 0xb0, 0xed, 0xa5, 0xcf, 0x55, 0x4b, 0xb8, 0xa4, 0x9e, 0x48, 0x51, 0xc1, 0x92, 0x3c, 0x16, 0x5e, 0xe0, 0x1e, 0x95, 0x36, 0xfa, 0xf3, 0x21, 0xab, 0x5c, 0x59, 0x5c, 0xc2, 0x45, 0xc3, 0x17, 0xe4, 0x21, 0x61, 0xbb, 0x03, 0x8c, 0x8c, 0xf3, 0x80, 0x78, 0xae, 0xe3, 0x4f, 0xd5, 0x22, 0xbf, 0xb3, 0x59, 0xc1, 0x00, 0x91, 0xf3, 0x0c, 0xf4, 0xff, 0x00, 0xeb, 0x52, 0x94, 0x1c, 0x55, 0xd3, 0xb9, 0x2a, 0xcd, 0xd8, 0xd4, 0x32, 0x52, 0x19, 0x2a, 0x8b, 0x5e, 0xc0, 0xac, 0x54, 0xca, 0x81, 0x80, 0xc9, 0x05, 0x87, 0x02, 0xb3, 0x9b, 0x5e, 0x48, 0xf5, 0x26, 0x82, 0x4d, 0x82, 0xdc, 0x20, 0x22, 0x6d, 0xdc, 0x67, 0xad, 0x4a, 0x8b, 0x7b, 0x14, 0xd4, 0x56, 0xe6, 0xef, 0x99, 0x41, 0x92, 0xb9, 0x5b, 0xef, 0x1d, 0x78, 0x77, 0x4f, 0x72, 0x97, 0x1a, 0xac, 0x0a, 0xe0, 0x67, 0x68, 0x24, 0x9a, 0xc5, 0xb9, 0xf8, 0xbb, 0xe1, 0x78, 0x32, 0x12, 0xe2, 0x79, 0x8f, 0xfb, 0x11, 0x1f, 0xeb, 0x47, 0x24, 0xbb, 0x0f, 0xdd, 0x3d, 0x0f, 0x7d, 0x27, 0x99, 0x5e, 0x4b, 0x73, 0xf1, 0xb7, 0x4c, 0x4c, 0x8b, 0x6d, 0x36, 0xea, 0x53, 0xea, 0xcc, 0x14, 0x56, 0x45, 0xcf, 0xc6, 0xeb, 0xe6, 0xc8, 0xb6, 0xd2, 0x21, 0x5f, 0x43, 0x24, 0x85, 0xbf, 0x96, 0x2a, 0xbd, 0x9c, 0x85, 0xcd, 0x13, 0xdc, 0xe3, 0x97, 0xe6, 0x3f, 0x4a, 0x2b, 0xe7, 0x99, 0x3e, 0x30, 0xf8, 0xa1, 0xdb, 0x31, 0x0b, 0x38, 0x87, 0xa0, 0x8b, 0x3f, 0xcc, 0xd1, 0x54, 0xa9, 0xbe, 0xe4, 0x36, 0x87, 0x58, 0x78, 0xff, 0x00, 0x5d, 0xbc, 0x66, 0x55, 0xb6, 0x79, 0x9c, 0x0d, 0xc4, 0x40, 0x99, 0xda, 0xbd, 0xce, 0x36, 0x9e, 0x3f, 0x1a, 0xdb, 0xb7, 0xf1, 0x45, 0xf4, 0xee, 0x91, 0xad, 0xd9, 0x59, 0x18, 0x67, 0x6b, 0xa2, 0x8c, 0x71, 0x9e, 0x4e, 0x30, 0x2b, 0x84, 0xd3, 0xa2, 0x68, 0x2c, 0x35, 0x08, 0x7c, 0xcb, 0x84, 0x9e, 0xe0, 0xec, 0x47, 0x8d, 0x8e, 0xd1, 0x1e, 0x30, 0x77, 0xa8, 0xc0, 0x62, 0x72, 0x7f, 0x1c, 0x56, 0x9d, 0xc7, 0xda, 0x75, 0xc3, 0x6d, 0x6b, 0x36, 0x25, 0x96, 0x38, 0x76, 0x34, 0xf2, 0x23, 0x7c, 0xf8, 0xcf, 0x2c, 0x4b, 0x75, 0xc0, 0xeb, 0x8f, 0x5a, 0xae, 0x68, 0x46, 0xf7, 0x15, 0x9b, 0xd8, 0xeb, 0x1f, 0x5b, 0xba, 0xde, 0xce, 0xd7, 0xa5, 0x6e, 0x3f, 0xd5, 0x87, 0x42, 0x98, 0x00, 0x73, 0x8e, 0x46, 0x39, 0x27, 0xd3, 0xb0, 0xa6, 0x26, 0xbf, 0xad, 0xb2, 0x6f, 0x8f, 0x56, 0x86, 0x4c, 0x7f, 0x0b, 0xa2, 0xff, 0x00, 0x35, 0xc5, 0x71, 0xd6, 0x7a, 0x4d, 0x8c, 0x6c, 0xcd, 0x3c, 0x06, 0x46, 0x72, 0x0e, 0xee, 0x46, 0xdf, 0x60, 0x33, 0x8a, 0xd7, 0x88, 0x34, 0x71, 0xa2, 0x47, 0x1b, 0x05, 0x55, 0xdb, 0x83, 0xcf, 0x41, 0x80, 0x73, 0xfa, 0xf4, 0x15, 0x9c, 0xaa, 0x45, 0x6a, 0x8a, 0xb3, 0x2d, 0xeb, 0x1e, 0x21, 0xd5, 0xf5, 0x1b, 0x28, 0xac, 0xa7, 0xb6, 0xb0, 0x9d, 0x5d, 0xbe, 0x64, 0x90, 0xb1, 0x0e, 0x07, 0x71, 0x96, 0xf9, 0x4f, 0xbd, 0x79, 0xed, 0xf7, 0x90, 0x0c, 0x53, 0xdb, 0x47, 0x25, 0xb4, 0x52, 0x12, 0x9b, 0x26, 0x6c, 0xfc, 0xe3, 0xae, 0x3b, 0xe3, 0xa7, 0x5c, 0x9e, 0x6b, 0xb0, 0xbb, 0xb8, 0x7b, 0x5c, 0xcd, 0x33, 0x04, 0x55, 0x43, 0xc9, 0x19, 0xf7, 0x3c, 0x7e, 0x1f, 0x8d, 0x50, 0x4b, 0x68, 0xf5, 0x11, 0x34, 0x17, 0x56, 0xe8, 0xca, 0x63, 0x56, 0x52, 0x46, 0xe2, 0x0b, 0x0c, 0x92, 0x09, 0x1d, 0x46, 0x40, 0xcf, 0x70, 0x07, 0x5a, 0xa8, 0xd4, 0xf7, 0x79, 0x9a, 0xd0, 0x96, 0x8e, 0x6d, 0x6f, 0x6e, 0xad, 0x18, 0x67, 0x70, 0xf7, 0x07, 0x22, 0xb6, 0xf4, 0xef, 0x18, 0x9b, 0x51, 0xfe, 0x91, 0x1b, 0x4a, 0x83, 0xa0, 0x07, 0x1c, 0xd2, 0xea, 0xbe, 0x1c, 0x96, 0xea, 0xd1, 0x05, 0xb5, 0xc0, 0x59, 0x93, 0x1c, 0xb1, 0x2a, 0x18, 0x7b, 0xe2, 0xb9, 0x93, 0x09, 0xb8, 0x8a, 0x49, 0x18, 0x00, 0x11, 0x92, 0x36, 0xdb, 0xd3, 0x24, 0x12, 0x4f, 0xe9, 0x5a, 0xc2, 0x4a, 0x5a, 0xa1, 0x35, 0xdc, 0xef, 0x6d, 0x3e, 0x23, 0xda, 0xbb, 0x94, 0x9e, 0xd9, 0x50, 0x7f, 0x09, 0x04, 0x7e, 0xb4, 0x9a, 0x9f, 0xc4, 0x05, 0x8e, 0xd1, 0x8d, 0x8c, 0x70, 0x0b, 0x81, 0xc8, 0xf3, 0x98, 0xb8, 0x23, 0xe8, 0x31, 0x5e, 0x72, 0x6c, 0xb6, 0x27, 0x9b, 0xd7, 0x0a, 0x49, 0xc8, 0xf6, 0xcf, 0xf2, 0x35, 0x0d, 0xbd, 0xec, 0x91, 0xc8, 0x56, 0x2d, 0x83, 0x7a, 0x95, 0x20, 0xae, 0x7a, 0xfd, 0x6a, 0xda, 0xbb, 0xb8, 0x95, 0x91, 0xd6, 0x5b, 0xfc, 0x42, 0xf1, 0x05, 0xcd, 0xfd, 0xb9, 0x68, 0x6d, 0x1d, 0x77, 0x85, 0xf2, 0xc4, 0x20, 0x06, 0xc9, 0x03, 0x19, 0xeb, 0xd7, 0x15, 0xaf, 0xa9, 0xf8, 0x8a, 0x57, 0x17, 0x16, 0xf1, 0xdd, 0x44, 0x44, 0xaa, 0xd6, 0xf3, 0x45, 0x07, 0xca, 0x13, 0x69, 0x23, 0x18, 0xed, 0xd7, 0xa8, 0xeb, 0xf8, 0x57, 0x31, 0xe1, 0xdb, 0x82, 0x9a, 0xb4, 0x2f, 0x32, 0x16, 0x4b, 0x6d, 0xd7, 0x1b, 0x42, 0x75, 0xd8, 0x37, 0x7a, 0xff, 0x00, 0xb3, 0x50, 0xc3, 0xa6, 0xdc, 0xc5, 0xa8, 0x5d, 0x25, 0xe4, 0x52, 0xc3, 0x31, 0x21, 0xc6, 0xf1, 0x82, 0x43, 0x64, 0x83, 0xf4, 0x35, 0x2d, 0x0d, 0x14, 0x35, 0x25, 0xbd, 0x49, 0xb7, 0x4d, 0x75, 0x34, 0xc1, 0x86, 0x03, 0x33, 0x12, 0x48, 0x1d, 0x8d, 0x6b, 0xd9, 0xeb, 0xb7, 0x0f, 0x6e, 0xa2, 0xf2, 0x76, 0x21, 0x46, 0x04, 0x8c, 0xd9, 0xfc, 0xeb, 0x08, 0xdc, 0xcf, 0x6d, 0xa8, 0x79, 0x77, 0x4e, 0x5d, 0x11, 0xf0, 0xe1, 0xb9, 0xc8, 0xae, 0x83, 0x50, 0xd2, 0x92, 0x5d, 0x2a, 0x41, 0x0a, 0x00, 0x54, 0x6f, 0x5d, 0xa3, 0xae, 0x39, 0xff, 0x00, 0x1a, 0x1a, 0xba, 0xd4, 0x05, 0x98, 0xdb, 0xea, 0x18, 0xc4, 0x81, 0x9c, 0x0e, 0x19, 0x79, 0xaa, 0x33, 0xdb, 0xfd, 0x9d, 0x37, 0x32, 0x92, 0x33, 0x80, 0x45, 0x54, 0xd0, 0x21, 0xbb, 0x4d, 0x4a, 0x36, 0x16, 0xd3, 0x34, 0x4f, 0xf2, 0x3b, 0x08, 0xce, 0x00, 0x3d, 0xf3, 0xf5, 0xc5, 0x75, 0xd7, 0x7a, 0x71, 0xb8, 0xb5, 0x92, 0x31, 0xb7, 0x71, 0x19, 0x5c, 0x91, 0xd6, 0xa5, 0xda, 0x2f, 0x70, 0xdc, 0xc3, 0xb4, 0xb3, 0x7b, 0x98, 0x3c, 0xd5, 0x8d, 0x8a, 0xe4, 0x8f, 0x94, 0x66, 0xae, 0xc7, 0xa3, 0xc8, 0xca, 0x1b, 0x61, 0xc1, 0xfe, 0xf3, 0x01, 0xfd, 0x6b, 0x43, 0x47, 0xb1, 0xb8, 0xd3, 0xe3, 0x91, 0x65, 0x92, 0x32, 0x8e, 0x72, 0x15, 0x1b, 0x24, 0x1f, 0xca, 0xb4, 0xf7, 0x7a, 0x93, 0x8e, 0xd5, 0x8c, 0xaa, 0x59, 0xd9, 0x0e, 0xc6, 0x24, 0x3a, 0x30, 0x65, 0x56, 0x2f, 0x12, 0x86, 0x50, 0x40, 0x2f, 0xc8, 0xfa, 0xd1, 0x5b, 0x06, 0x45, 0xef, 0x93, 0x45, 0x2f, 0x6a, 0xc5, 0x61, 0x89, 0x0c, 0x68, 0x37, 0x6c, 0x24, 0x7b, 0x91, 0x43, 0x5c, 0x88, 0x7e, 0xec, 0x58, 0x6c, 0x63, 0x20, 0x8a, 0x4c, 0x44, 0xcd, 0x9e, 0x72, 0x78, 0xe4, 0x62, 0x9a, 0x14, 0x9f, 0xbc, 0x57, 0x27, 0xa7, 0x15, 0x0d, 0x1a, 0x7a, 0x0d, 0x6b, 0xf6, 0x5c, 0x7e, 0xe8, 0x63, 0xd7, 0x34, 0x7f, 0x69, 0xc8, 0x17, 0x85, 0x60, 0x7d, 0x01, 0xa8, 0x64, 0x8b, 0x2d, 0x8d, 0xc1, 0xb9, 0xe0, 0x0c, 0xff, 0x00, 0x2a, 0x84, 0xc0, 0x17, 0xe5, 0x0e, 0xd9, 0x3e, 0xbd, 0xe8, 0xb2, 0x16, 0xa6, 0x1e, 0xad, 0x7e, 0xf7, 0xd7, 0xc6, 0x39, 0x65, 0x65, 0x8d, 0x3b, 0x56, 0xa6, 0x95, 0xaf, 0x18, 0xad, 0xde, 0x29, 0x46, 0x51, 0x24, 0xc4, 0x40, 0x9e, 0x55, 0x30, 0x30, 0x3f, 0x0e, 0x94, 0xd9, 0x34, 0x98, 0x9a, 0xe0, 0xb3, 0xaa, 0x97, 0x63, 0x8e, 0xbc, 0xfe, 0x94, 0x1d, 0x36, 0x34, 0xc0, 0x44, 0x20, 0x67, 0x1c, 0xf1, 0xcd, 0x6d, 0x29, 0x45, 0xc5, 0x44, 0x9d, 0x51, 0xa2, 0x7c, 0x41, 0x04, 0x8a, 0xc0, 0xa9, 0x1b, 0xb8, 0x3c, 0x74, 0xae, 0x55, 0x0c, 0x90, 0x99, 0xa3, 0xfe, 0x09, 0x30, 0x72, 0x39, 0xe4, 0x74, 0xfe, 0x67, 0xf3, 0xad, 0xa3, 0xa6, 0x10, 0x09, 0x2d, 0x8e, 0x3e, 0xb9, 0xa8, 0xdf, 0x4a, 0x9b, 0x27, 0x18, 0xc7, 0x73, 0x91, 0x4a, 0x12, 0x50, 0xd8, 0x1d, 0xd9, 0x1e, 0x9b, 0x75, 0x6d, 0x0c, 0xa1, 0xe6, 0x0a, 0x54, 0x21, 0x01, 0x4f, 0xae, 0x00, 0xef, 0x44, 0xf1, 0xe8, 0xb3, 0xb6, 0x45, 0xb8, 0x46, 0x63, 0xfc, 0x0c, 0x45, 0x46, 0xda, 0x6c, 0xa8, 0x41, 0x65, 0x07, 0xd3, 0xde, 0xa2, 0x6b, 0x43, 0x0b, 0x02, 0xd1, 0xf4, 0x3c, 0x55, 0x37, 0x77, 0x7b, 0x81, 0x64, 0x84, 0xd3, 0xe2, 0x78, 0xec, 0xbc, 0xd3, 0x24, 0xf8, 0x42, 0xbb, 0xb2, 0x48, 0xcf, 0x4c, 0xfb, 0x9c, 0x57, 0xa6, 0x7c, 0x49, 0xb4, 0xf2, 0x34, 0xbb, 0x19, 0x11, 0x03, 0x4a, 0x92, 0x08, 0x8b, 0x0c, 0x64, 0x0d, 0xa7, 0xbe, 0x3d, 0xab, 0xca, 0x0c, 0x8b, 0x73, 0x23, 0x07, 0xc0, 0xf9, 0x78, 0xe7, 0x1c, 0xd6, 0xa4, 0x9e, 0x25, 0xd5, 0x2e, 0xf4, 0x78, 0xf4, 0xcb, 0x9b, 0x83, 0x73, 0x14, 0x52, 0x06, 0x8e, 0x57, 0x39, 0x75, 0xc0, 0x23, 0x19, 0xee, 0x39, 0xef, 0x55, 0x34, 0xf4, 0x68, 0x16, 0xd6, 0x23, 0x8f, 0x47, 0x8e, 0xea, 0xe4, 0x4f, 0x3a, 0x07, 0x6c, 0x60, 0xee, 0x50, 0x73, 0xf5, 0xed, 0xfa, 0x56, 0xdc, 0x48, 0x62, 0x4c, 0x23, 0xaa, 0x85, 0x18, 0xda, 0x00, 0x15, 0xcf, 0xad, 0xd5, 0xd0, 0x61, 0x97, 0x27, 0xd3, 0x22, 0xac, 0x0b, 0xbb, 0x80, 0x40, 0x3c, 0xe0, 0xf0, 0x41, 0x06, 0xb1, 0x97, 0x33, 0xdc, 0x16, 0x86, 0xc1, 0x6b, 0x83, 0xf7, 0x98, 0x73, 0xf4, 0xcf, 0xf2, 0xa5, 0x2e, 0x72, 0x77, 0x86, 0x23, 0xb6, 0x71, 0xfe, 0x15, 0x9d, 0xf6, 0xc9, 0x42, 0x06, 0x3b, 0x49, 0x3e, 0xd4, 0x9f, 0x6c, 0x94, 0x83, 0x95, 0x1d, 0x38, 0x00, 0x54, 0xd9, 0x94, 0x6a, 0x87, 0xcf, 0xff, 0x00, 0x5c, 0x52, 0xb4, 0xa1, 0x54, 0x85, 0x65, 0xe4, 0x76, 0x15, 0x97, 0x1e, 0xa2, 0x47, 0x25, 0x3f, 0x0a, 0x1b, 0x52, 0x04, 0x83, 0x83, 0xc7, 0xa5, 0x1c, 0xac, 0x4d, 0x9a, 0xd1, 0x4f, 0xb4, 0x72, 0x4f, 0x4f, 0x4a, 0x2b, 0x2e, 0x2b, 0xd0, 0xce, 0x59, 0x91, 0x80, 0xc7, 0x40, 0x38, 0x34, 0x51, 0xca, 0xc5, 0x72, 0xeb, 0xe4, 0x26, 0x72, 0x4e, 0x3b, 0x1f, 0xad, 0x40, 0x09, 0xf3, 0x42, 0xee, 0x38, 0x0b, 0x9a, 0x28, 0xa7, 0xd4, 0x43, 0xd6, 0x04, 0x92, 0x52, 0x84, 0x10, 0x06, 0x7a, 0x71, 0x9c, 0x0a, 0x9d, 0xa0, 0x4b, 0x79, 0x02, 0x26, 0x48, 0x23, 0x39, 0x27, 0x9a, 0x28, 0xa4, 0x68, 0x89, 0x2d, 0x61, 0x8e, 0x50, 0xe0, 0xa0, 0x1b, 0x48, 0xe9, 0xdf, 0x9a, 0x8a, 0xe6, 0xd9, 0x23, 0xb9, 0x31, 0xa9, 0x6d, 0xa4, 0x67, 0x93, 0x45, 0x14, 0xd0, 0xfa, 0x15, 0x42, 0x83, 0x21, 0x1d, 0x3e, 0x62, 0x38, 0xab, 0x0c, 0x04, 0x70, 0xfd, 0xd0, 0xdc, 0xff, 0x00, 0x17, 0xd6, 0x8a, 0x2a, 0x58, 0x90, 0xc9, 0x1f, 0x75, 0xb8, 0xc8, 0x1d, 0x45, 0x42, 0xf0, 0x46, 0xcc, 0x41, 0x1c, 0x28, 0xc8, 0x1f, 0x5a, 0x28, 0xa6, 0xb6, 0x02, 0xb3, 0xe9, 0x76, 0x8a, 0x85, 0x84, 0x5c, 0x9e, 0x7a, 0xfd, 0x69, 0xa6, 0xda, 0x28, 0xa3, 0x60, 0x14, 0x11, 0x81, 0xc1, 0xa2, 0x8a, 0xbb, 0xb6, 0x21, 0xdf, 0x67, 0x89, 0xad, 0x4b, 0x6c, 0x01, 0x87, 0x00, 0x8a, 0x7a, 0x5a, 0xc4, 0xcc, 0xc3, 0x18, 0x00, 0x71, 0x8f, 0xa5, 0x14, 0x52, 0x12, 0x21, 0xba, 0x85, 0x62, 0x20, 0xa9, 0x3f, 0x7b, 0x18, 0xcd, 0x44, 0x54, 0x23, 0xb6, 0x07, 0x43, 0x45, 0x14, 0xc0, 0x40, 0xc4, 0x00, 0x06, 0x30, 0xd9, 0xce, 0x46, 0x7b, 0xd4, 0x80, 0x0f, 0x41, 0xc7, 0xb5, 0x14, 0x50, 0x24, 0x58, 0x48, 0x63, 0x79, 0x1c, 0x95, 0xe9, 0x8e, 0x86, 0x8a, 0x28, 0xa2, 0xe0, 0xf7, 0x3f, 0xff, 0xd9 };
            Image image = jpegOperation.ConvertByteArrayToImage(planeHEX);

            // set encryptio flags
            CryptoFlags cryptoFlags = new CryptoFlags()
            {
                DcCoeffCrypto = false,
                SwapBlock = false,
                SwapCWVPair = false,
                SwapValues = true
            };

            // check encryption calls
            Image encryptedImage = Bridge.EncryptJPG(image, new List<RoI>(), "Password", cryptoFlags, out errorCode);
            Byte[] encryptedImageByteArray = jpegOperation.ConvertImageToByteArray(encryptedImage);

            // check decryption calls
            Image decryptedImage = Bridge.DecryptJPG(encryptedImage, new List<RoI>(), "Password", cryptoFlags, out errorCode);
            Byte[] decryptedImageByteArray = jpegOperation.ConvertImageToByteArray(decryptedImage);

            // check result
            for (int i = 0; i < planeHEX.Length; i++)
                Assert.IsTrue(planeHEX[i] == decryptedImageByteArray[i]);
        }
Example #3
0
        /// <summary>
        /// encrypts an image
        /// </summary>
        /// <param name="image">the image that will be encrypted</param>
        /// <param name="roIs">the Region of Interests</param>
        /// <param name="password">the password used for encryption</param>
        /// <param name="cryptoFlags">determines which encryption mode will be applied</param>
        /// <param name="errorCode">if an error occurs this value will be set is not 0</param>
        /// <returns>returns an encrypted image</returns>
        public static Image EncryptJPG(Image image, IList<RoI> roIs, string password, CryptoFlags cryptoFlags, out EnumErrorCode errorCode)
        {
            // create JpegOperation from business logic
            IBusinessLogic businessLogic = new BusinessLogic();
            IJpegOperation jpegOperation = businessLogic.CreateJpegOperationBL();

            // convert Image to byte array
            byte[] in_jpegToEncrypt = jpegOperation.ConvertImageToByteArray(image);
            Int32 in_size = in_jpegToEncrypt.Length;

            // convert RoIs to the correct format
            int counter = 0;
            Int32[] in_roiArray = new Int32[roIs.Count() * 4];
            foreach (RoI roi in roIs)
            {
                in_roiArray[(counter * 4) + 0] = roIs[counter].X;
                in_roiArray[(counter * 4) + 1] = roIs[counter].Y;
                in_roiArray[(counter * 4) + 2] = roIs[counter].Width;
                in_roiArray[(counter * 4) + 3] = roIs[counter].Height;
                counter++;
            }
            Int32 in_roiArraySize = roIs.Count() * 4;

            // create MD5 hash of the password
            MD5 md5 = new MD5CryptoServiceProvider();
            byte[] textToHash = Encoding.Default.GetBytes(password);
            byte[] in_encryptionKey = md5.ComputeHash(textToHash);
            Int32 in_encryptionKeySize = in_encryptionKey.Length;

            // convert crypto flags 
            byte in_cryptoFlags = cryptoFlags.ToByte();

            // get memory for the encrypted image
            byte[] out_jpegEncrypted = new byte[in_size*2];
            byte[] out_statistics   =  new byte[in_size];
            IntPtr out_jpegEncryptedSize = new IntPtr();
            int[] ia2 = new int[1];
            GCHandle gch1 = GCHandle.Alloc(ia2);
            out_jpegEncryptedSize = Marshal.UnsafeAddrOfPinnedArrayElement(ia2, 0);

            // create a pointer for the error code (will be set from C-code)
            IntPtr out_errorCode = new IntPtr();
            int[] ia = new int[1];
            GCHandle gch = GCHandle.Alloc(ia);
            out_errorCode = Marshal.UnsafeAddrOfPinnedArrayElement(ia, 0);

            // now try to call the encryption algorithm
            try
            {
                encJpeg(
                    in_jpegToEncrypt,
                    in_size,
                    in_roiArray,
                    in_roiArraySize,
                    in_encryptionKey,
                    in_encryptionKeySize,
                    in_cryptoFlags,
                    out_jpegEncrypted,
                    ref out_jpegEncryptedSize,
                    ref out_errorCode
                );

                // get the error code
                errorCode = ConvertIntToErrorCode(out_errorCode.ToInt32());

                // truncate byte array
                out_jpegEncrypted = out_jpegEncrypted.Take(out_jpegEncryptedSize.ToInt32()).ToArray();
            }
            catch 
            {
                throw new EncryptionException("Error while encrypting!");
            }

            // convert byte array to Image and return
            return jpegOperation.ConvertByteArrayToImage(out_jpegEncrypted);
        }
Example #4
0
        public void Test_Encryption_Test_JPG_progressive()
        {
            // get JPG image with progressive format
            Image image = Image.FromFile(pathToProgressiveJpgImage);

            // set encryption flags
            CryptoFlags cryptoFlags = new CryptoFlags();

            // init error code
            EnumErrorCode errorCode = EnumErrorCode.SUCCESS;

            // check encryption calls
            Image encryptedImage = Bridge.EncryptJPG(image, new List<RoI>(), "Password", cryptoFlags, out errorCode);

            // if an error occurs: encryptedImage is null
            Assert.IsNull(encryptedImage);

            // check correct error message
            Assert.IsTrue(errorCode == EnumErrorCode.UNSUPPORTED);
        }