コード例 #1
0
        public void DecryptToBytes_returns_decrypted_input()
        {
            var plaintext = Client.DecryptToBytes(EncryptedString, Key);

            Assert.Equal(Plaintext.ToBytes(), plaintext);
        }