Beispiel #1
0
 public string Decrypt(string text, string decryptKey)
 {
     return(EncryptUtility.Decrypt(text, decryptKey));
 }
Beispiel #2
0
 public string ToMD5(string text)
 {
     return(EncryptUtility.ToMD5(text));
 }
Beispiel #3
0
 public string Encrypt(string text, string encryptKey)
 {
     return(EncryptUtility.Encrypt(text, encryptKey));
 }