コード例 #1
0
 public static string StudyDecrypt(string cryptograph)
 {
     return(CryptographyHelpers.Decrypt(_key, _salt, cryptograph));
 }
コード例 #2
0
 public static string StudyEncrypt(string identity)
 {
     return(CryptographyHelpers.Encrypt(_key, _salt, identity));
 }