示例#1
0
 private string Decrypt(string text)
 {
     try
     {
         var decryp = new HelperEncrypter();
         return(decryp.Decrypt(text));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
示例#2
0
 private string Encrypter(string text)
 {
     try
     {
         var encryp = new HelperEncrypter();
         return(encryp.Encrypt(text));
     }
     catch (Exception e)
     {
         throw e;
     }
 }