Exemplo n.º 1
0
        private static AesCryptoServiceProvider GetProvider(string password)
        {
            AesCryptoServiceProvider sa = new AesCryptoServiceProvider();

            CryptoHelper.SetKeyIV(sa, password);
            return(sa);
        }
Exemplo n.º 2
0
        private static TripleDESCryptoServiceProvider GetProvider(string password)
        {
            TripleDESCryptoServiceProvider sa = new TripleDESCryptoServiceProvider();

            CryptoHelper.SetKeyIV(sa, password);
            return(sa);
        }