-
Notifications
You must be signed in to change notification settings - Fork 1
/
DecryptWithAesGcm256Command.cs
67 lines (60 loc) · 2.27 KB
/
DecryptWithAesGcm256Command.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using TreeBasedCli;
namespace Samples.CryptoKit
{
public class DecryptWithAesGcm256Command :
LeafCommand<
DecryptWithAesGcm256Command.Arguments,
DecryptWithAesGcm256Command.Parser,
DecryptWithAesGcm256Command.Handler>
{
private const string InputLabel = "--input";
private const string OutputLabel = "--output";
public DecryptWithAesGcm256Command() : base(
label: "decrypt",
description: new[]
{
"Decrypts the specified file using a cryptographic key and additional authenticated data."
},
options: new[]
{
new CommandOption(
label: InputLabel,
description: new[]
{
"The path to the input file that is to be decrypted."
}
),
new CommandOption(
label: OutputLabel,
description: new[]
{
"The path to the output file where the decrypted data is to be written."
}
),
})
{ }
public record Arguments(string InputPath, string OutputPath) : IParsedCommandArguments;
public class Parser : ICommandArgumentParser<Arguments>
{
public IParseResult<Arguments> Parse(CommandArguments arguments)
{
string inputPath = arguments.GetArgument(InputLabel).ExpectedAsSinglePathToExistingFile();
string outputPath = arguments.GetArgument(OutputLabel).ExpectedAsSingleValue();
var result = new Arguments(
InputPath: inputPath,
OutputPath: outputPath
);
return new SuccessfulParseResult<Arguments>(result);
}
}
public class Handler : ILeafCommandHandler<Arguments>
{
public Task HandleAsync(Arguments arguments, LeafCommand _)
{
Console.WriteLine($"decrypting file {arguments.InputPath}");
Console.WriteLine($"writing output to {arguments.OutputPath}");
return Task.CompletedTask;
}
}
}
}