Esempio n. 1
0
 public static byte[] Decrypt(byte[] input, string password)
 {
     return(CryptoHelper.Decrypt(input, GetAesCryptoServiceProvider(password)));
 }
Esempio n. 2
0
 public static string Decrypt(string base64, string password)
 {
     return(CryptoHelper.Decrypt(base64, GetAesCryptoServiceProvider(password)));
 }