Ejemplo n.º 1
0
 public static Task <string> DecryptFileAsync(this ICipher cipher, string file)
 {
     return(Task.Run(() => cipher.DecryptToString(File.ReadAllBytes(file))));
 }