Beispiel #1
0
 public string Decrypt(string encryptedText)
 {
     return(Encrypter.Decrypt(encryptedText, GetKey()));
 }
Beispiel #2
0
 public string Encrypt(string textToEncrypt)
 {
     return(Encrypter.Encrypt(textToEncrypt, GetKey()));
 }