Exemplo n.º 1
0
        public static string Decrypt(string cipherText)
        {
            return(EncryptionHelperBackup.Decrypt(cipherText));

            /*string EncryptionKey = "w/2&843ï6C╣♣";
             *
             * cipherText= StringCipher.Decrypt(cipherText, EncryptionKey);
             *
             * return cipherText;*/
        }
Exemplo n.º 2
0
        public static string Encrypt(string clearText)
        {
            return(EncryptionHelperBackup.Encrypt(clearText));

            /*string EncryptionKey = "w/2&843ï6C╣♣";
             *
             *
             * clearText= StringCipher.Encrypt(clearText, EncryptionKey);
             * return clearText;*/
        }