forked from microsoft/mail2bug
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDpapiHelperUtilMain.cs
80 lines (68 loc) · 2.09 KB
/
DpapiHelperUtilMain.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
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using System.Linq;
using System.Reflection;
using Mail2Bug.Helpers;
using Microsoft.Test.CommandLineParsing;
namespace DpapiHelperUtil
{
class DpapiHelperUtilMain
{
public class DpapiUtilWriteCommand : Command
{
/// <summary>
/// The data to write
/// </summary>
public string Data { get; set; }
/// <summary>
/// The name of the file to write the encrypted data to
/// </summary>
public string Out { get; set; }
public override void Execute()
{
DPAPIHelper.WriteDataToFile(Data, Out);
}
}
public class DpapiUtilReadCommand : Command
{
/// <summary>
/// The name of the file to read the encrypted data from
/// </summary>
public string Filename { get; set; }
public override void Execute()
{
string readDataFromFile = DPAPIHelper.ReadDataFromFile(Filename);
Console.WriteLine("Data:'{0}'", readDataFromFile);
}
}
static void Main(string[] args)
{
if(args.Length < 1)
{
PrintUsage();
return;
}
Command c = null;
if (args[0].Equals("read", StringComparison.InvariantCultureIgnoreCase))
{
c = new DpapiUtilReadCommand();
}
if (args[0].Equals("write", StringComparison.InvariantCultureIgnoreCase))
{
c = new DpapiUtilWriteCommand();
}
if (c == null)
{
PrintUsage();
return;
}
c.ParseArguments(args.Skip(1));
c.Execute();
}
private static void PrintUsage()
{
Console.WriteLine("Usage:");
Console.WriteLine("DpapiHelperUtil read /Filename=<filename>");
Console.WriteLine("DpapiHelperUtil write /Data=<data> /Out=<filename>");
}
}
}