예제 #1
0
        public void TestDisposal()
        {
            string    test;
            CryptoKey key = new AESCryptoKey();

            test = key.Encrypt("Test");
            key.Dispose();

            key.Decrypt(test);
            Assert.Fail();
        }