Exemplo n.º 1
0
 public static string StudyDecrypt(string cryptograph)
 {
     return(CryptographyHelpers.Decrypt(_key, _salt, cryptograph));
 }
Exemplo n.º 2
0
 public static string StudyEncrypt(string identity)
 {
     return(CryptographyHelpers.Encrypt(_key, _salt, identity));
 }