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