Example #1
0
 /// <summary>
 /// This step will encrypt but not decrypt so let's not use it
 /// </summary>
 private static void TestStep11()
 {
     Byte[] test       = Encoding.ASCII.GetBytes("Hello World");
     Byte[] encryptyed = Step11.Encrypt(test);
 }
        /// <summary>
        /// This step will encrypt but not decrypt so let's not use it
        /// </summary>
        private static void TestStep11()
        {
            String test = "Hello World";

            byte[] encryptyed = Step11.Encrypt(test);
        }