Ejemplo n.º 1
0
        public void TestIntEncryptionMinPlusTwo()
        {
            int initial        = int.MinValue + 2;
            var encryptedValue = FPEWrapper.EncryptInt(key, tweak, initial);
            var decryptedValue = FPEWrapper.DecryptInt(key, tweak, encryptedValue);

            Assert.AreEqual(initial, decryptedValue);
        }
Ejemplo n.º 2
0
        public void TestIntEncryptionMinusOne()
        {
            int initial        = -1;
            var encryptedValue = FPEWrapper.EncryptInt(key, tweak, initial);
            var decryptedValue = FPEWrapper.DecryptInt(key, tweak, encryptedValue);

            Assert.AreEqual(initial, decryptedValue);
        }
Ejemplo n.º 3
0
 public void TestIntEncryptionMin()
 {
     FPEWrapper.EncryptInt(key, tweak, int.MinValue);
 }
Ejemplo n.º 4
0
 public void TestIntEncryptionMinPlusOne()
 {
     FPEWrapper.EncryptInt(key, tweak, int.MinValue + 1);
 }
Ejemplo n.º 5
0
 public void TestIntEncryptionMaxMinusOne()
 {
     FPEWrapper.EncryptInt(key, tweak, int.MaxValue - 1);
 }