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); }
public void TestIntEncryptionMinusOne() { int initial = -1; var encryptedValue = FPEWrapper.EncryptInt(key, tweak, initial); var decryptedValue = FPEWrapper.DecryptInt(key, tweak, encryptedValue); Assert.AreEqual(initial, decryptedValue); }
public void TestIntEncryptionMin() { FPEWrapper.EncryptInt(key, tweak, int.MinValue); }
public void TestIntEncryptionMinPlusOne() { FPEWrapper.EncryptInt(key, tweak, int.MinValue + 1); }
public void TestIntEncryptionMaxMinusOne() { FPEWrapper.EncryptInt(key, tweak, int.MaxValue - 1); }