Esempio n. 1
0
        /// <summary>Decrypts an Encrypted String using passphrase</summary>
        /// <param name="cipherText">Encryptd String to Decrypt</param>
        /// <param name="passPhrase">Password to Decrypt</param>
        public static string Decrypt(this string cipherText, string passPhrase)
        {
            if (cipherText == null)
            {
                return("");
            }
            _AHK ahk = new _AHK();

            return(ahk.Decrypt(cipherText, passPhrase));
        }