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