Esempio n. 1
0
        public void Test_Decrypt()
        {
            var cipherWithFixedIv = new AeadAes256CbcHmacSha512Cipher(new FakeRandomNumberGenerator(Iv));
            var actualPlainText   = cipherWithFixedIv.Decrypt(Key, CipherText, AssociatedData);

            Assert.Equal(Plaintext, actualPlainText);
        }
Esempio n. 2
0
        public void Test_WorksWithRealIvGenerator()
        {
            var cipherWithRandomIv = new AeadAes256CbcHmacSha512Cipher();
            var cipherText         = cipherWithRandomIv.Encrypt(Key, Plaintext, AssociatedData);
            var roundTripPlainText = cipherWithRandomIv.Decrypt(Key, cipherText, AssociatedData);

            Assert.Equal(Plaintext, roundTripPlainText);
        }
Esempio n. 3
0
        public void Test_DecryptBadCipherText()
        {
            var cipherWithFixedIv = new AeadAes256CbcHmacSha512Cipher(new FakeRandomNumberGenerator(Iv));
            var bogusCipherText   = (byte[])CipherText.Clone();

            bogusCipherText[0]++;

            Assert.Throws <InvalidCiphertextException>(() => cipherWithFixedIv.Decrypt(Key, bogusCipherText, AssociatedData));
        }
Esempio n. 4
0
        public void Test_DecryptBadKeySize()
        {
            var cipherWithFixedIv = new AeadAes256CbcHmacSha512Cipher(new FakeRandomNumberGenerator(Iv));

            Assert.Throws <InvalidCryptoKeyException>(() => cipherWithFixedIv.Decrypt(new byte[0], CipherText, AssociatedData));
        }