public void DecryptShouldReturnOriginalPlainText() { var aesEncryption = new SymmetricAlgorithms(); var decrypted = aesEncryption.Decrypt(CipherText, IV); Assert.That(PlainText, Is.EqualTo(decrypted)); }