コード例 #1
0
ファイル: Program.cs プロジェクト: AdrianLThomas/altCrypt
 private static async Task DecryptFileAsync()
 {
     IFile file = new LocalFile(_args.Path);
     await _encryptor.DecryptAsync(file);
 }
コード例 #2
0
 public async Task DecryptAsync_ThrowsArgumentNullException_WhenFileParamIsNull()
 {
     await _fileEncryptor.DecryptAsync((IFile)null);
 }