public static byte[] Decrypt(byte[] input, string password) { return(FishCryptoService.Decrypt(input, GetAesCryptoServiceProvider(password))); }
public static string Decrypt(string base64, string password) { return(FishCryptoService.Decrypt(base64, GetAesCryptoServiceProvider(password))); }