Exemple #1
0
 public static string StringDecrypt(string strEncrypted)
 {
     return(StringCipher.Decrypt(strEncrypted));
 }
Exemple #2
0
 public static string StringEncrypt(string inputStr)
 {
     return(StringCipher.Encrypt(inputStr));
 }