Пример #1
0
 public static byte[] Decrypt(byte[] input, string password)
 {
     return(FishCryptoService.Decrypt(input, GetAesCryptoServiceProvider(password)));
 }
Пример #2
0
 public static string Decrypt(string base64, string password)
 {
     return(FishCryptoService.Decrypt(base64, GetAesCryptoServiceProvider(password)));
 }