-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
137 lines (121 loc) · 5.8 KB
/
Program.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
using System;
using System.IO;
using System.Text;
using System.Security.Cryptography;
namespace encryptString
{
class Program
{
// Reading in any commandline parameters at startup
// ** Note: Will be adding interactive input in place of arguments
static void Main(string[] args)
{
// Checking to see if any command line parameters were added to the commmand,
// if not printing out instructions
if (args.Length == 0)
{
Console.WriteLine("\nInvalid Parameters\n");
Console.WriteLine("Encrypt Useage: encryptString encrypt -s 'String to Encrypt'");
Console.WriteLine("Decrypt Useage: encryptString decrypt -s 'String to Decrypt'");
Console.WriteLine("\n");
return;
}
var key = "C498FD371940D49710867BE27345D3B9"; // Setting the encryption key for the program
var content = ""; // Declaring a variable to store the incoming text
var encrypted = ""; // Declaring a variable for encrypted text
var decrypted = ""; // Declaring a variable for decrypted text
var command = args[0]; // Storing commandline paramters in an arrary to process
// Switch statement to process the commands
switch (command)
{
// if the encrypt parameter was defined, then do this...
case "encrypt" when args.Length == 3 && args[1] == "-s":
content = args[2];
try
{
encrypted = EncryptString(content, key);
Console.WriteLine("\nEncrypted String: " + encrypted + "\n");
}
catch
{
Console.WriteLine("Something went wrong, please try again...");
}
break;
// if the decrypt parameter was defined, then do this...
case "decrypt" when args.Length == 3 && args[1] == "-s":
content = args[2];
try
{
decrypted = DecryptString(content, key);
Console.WriteLine("\nDecrypted String: " + decrypted + "\n");
}
catch
{
Console.WriteLine("\nInvalid encryption string, please check the string and try again...\n");
}
break;
// if the commands don't make any sense then print out the instructions again
default:
Console.WriteLine("\nInvalid Parameters\n");
Console.WriteLine("Encrypt Useage: encryptString encrypt -s 'String to Encrypt'");
Console.WriteLine("Decrypt Useage: encryptString decrypt -s 'String to Decrypt'");
Console.WriteLine("\n");
break;
}
System.Environment.Exit(0);
}
// Function to encrypt the string for storage
public static string EncryptString(string text, string keyString)
{
var key = Encoding.UTF8.GetBytes(keyString);
using (var aesAlg = Aes.Create())
{
using (var encryptor = aesAlg.CreateEncryptor(key, aesAlg.IV))
{
using (var msEncrypt = new MemoryStream())
{
using (var csEncrypt = new CryptoStream(msEncrypt, encryptor, CryptoStreamMode.Write))
using (var swEncrypt = new StreamWriter(csEncrypt))
{
swEncrypt.Write(text);
}
var iv = aesAlg.IV;
var decryptedContent = msEncrypt.ToArray();
var result = new byte[iv.Length + decryptedContent.Length];
Buffer.BlockCopy(iv, 0, result, 0, iv.Length);
Buffer.BlockCopy(decryptedContent, 0, result, iv.Length, decryptedContent.Length);
return Convert.ToBase64String(result);
}
}
}
}
// Function decrypt the string for use
public static string DecryptString(string cipherText, string keyString)
{
var fullCipher = Convert.FromBase64String(cipherText);
var iv = new byte[16];
var cipher = new byte[fullCipher.Length - iv.Length];
Buffer.BlockCopy(fullCipher, 0, iv, 0, iv.Length);
Buffer.BlockCopy(fullCipher, iv.Length, cipher, 0, cipher.Length);
var key = Encoding.UTF8.GetBytes(keyString);
using (var aesAlg = Aes.Create())
{
using (var decryptor = aesAlg.CreateDecryptor(key, iv))
{
string result;
using (var msDecrypt = new MemoryStream(cipher))
{
using (var csDecrypt = new CryptoStream(msDecrypt, decryptor, CryptoStreamMode.Read))
{
using (var srDecrypt = new StreamReader(csDecrypt))
{
result = srDecrypt.ReadToEnd();
}
}
}
return result;
}
}
}
}
}