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