예제 #1
0
 public static string DecryptStringAES(string sectoken)
 {
     return(CryptingUtility.doDecrypt(sectoken, SECURITY_KEY));
 }
예제 #2
0
 public static string EncryptStringAES(string stringToCrypt)
 {
     return(CryptingUtility.doCrypt(stringToCrypt, SECURITY_KEY));
 }