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