Example #1
0
 public static string Decrypt(string cipherText)
 {
     return(RijndaelHelper.Decrypt(cipherText, passPhrase, saltValue, hashAlgorithm, passwordIterations, initVector, keySize));
 }
Example #2
0
 public static string Encrypt(string plainText)
 {
     return(RijndaelHelper.Encrypt(plainText, passPhrase, saltValue, hashAlgorithm, passwordIterations, initVector, keySize));
 }