Esempio n. 1
0
        public static string Encrypt(string clearText, string key)
        {
            CryptoHelper helper = new CryptoHelper(key);

            return(helper.Encrypt(clearText));
        }