-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form.cs
220 lines (184 loc) · 7.32 KB
/
Form.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
using System;
using System.Security.Cryptography;
using System.Text;
using System.Windows.Forms;
namespace Encrypter
{
public partial class Form : System.Windows.Forms.Form
{
UnicodeEncoding ByteConverter = new UnicodeEncoding();
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
byte[] plaintext;
byte[] encryptedtext;
Algorithms.RSA rsaAlg = new Algorithms.RSA();
Algorithms.AES aesAlg = new Algorithms.AES();
Algorithms.Alice alice = new Algorithms.Alice();
Algorithms.RC4 rc4Alg = new Algorithms.RC4();
public Form()
{
InitializeComponent();
}
private bool ValidateUserEntry(string input, string mess)
{
// Checks the value of the text.
if (string.IsNullOrEmpty(input) || string.IsNullOrWhiteSpace(input))
{
// Initializes the variables to pass to the MessageBox.Show method.
string message = mess;
string caption = "Input Error";
MessageBoxButtons buttons = MessageBoxButtons.OK;
DialogResult result;
// Displays the MessageBox.
result = MessageBox.Show(message, caption, buttons);
return true;
}
else
return false;
}
private void RSAEncryptExecutor()
{
bool missingPlaintext = ValidateUserEntry(plaintextInput.Text, "Plaintext is missing!");
plaintext = ByteConverter.GetBytes(plaintextInput.Text);
keyInput.Text = Encoding.ASCII.GetString(rsa.ExportParameters(false).Modulus);
encryptedtext = rsaAlg.Encryption(plaintext, rsa.ExportParameters(false), false);
cyphertextResult.Text = Encoding.ASCII.GetString(encryptedtext);
if (missingPlaintext)
{
keyInput.ResetText();
cyphertextResult.ResetText();
}
}
private void RSADecryptExecutor()
{
bool missingCypher = ValidateUserEntry(cyphertextResult.Text, "Cypher is missing!");
bool missingKey = ValidateUserEntry(keyInput.Text, "Key is missing!");
byte[] decryptedtex = rsaAlg.Decryption(encryptedtext, rsa.ExportParameters(true), false);
plaintextInput.Text = ByteConverter.GetString(decryptedtex);
if (missingCypher || missingKey)
{
cyphertextResult.ResetText();
keyInput.ResetText();
plaintextInput.ResetText();
}
}
private void DHEncryptExecutor()
{
bool missingPlaintext = ValidateUserEntry(plaintextInput.Text, "Plaintext is missing!");
alice.ImportMessage(plaintextInput.Text);
alice.Encrypt();
keyInput.Text = alice.key;
cyphertextResult.Text = alice.crypt;
if (missingPlaintext)
{
keyInput.ResetText();
cyphertextResult.ResetText();
}
}
private void DHDecryptExecutor()
{
bool missingCypher = ValidateUserEntry(cyphertextResult.Text, "Cypher is missing!");
bool missingKey = ValidateUserEntry(keyInput.Text, "Key is missing!");
plaintextInput.Text = alice.mess;
if (missingCypher || missingKey)
{
cyphertextResult.ResetText();
keyInput.ResetText();
plaintextInput.ResetText();
}
}
private void RC4EncryptExecutor()
{
bool missingPlaintext = ValidateUserEntry(plaintextInput.Text, "Plaintext is missing!");
bool missingKey = ValidateUserEntry(keyInput.Text, "Key is missing!");
rc4Alg.ImportKey(keyInput.Text);
cyphertextResult.Text = rc4Alg.Encrypt(plaintextInput.Text);
if (missingPlaintext || missingKey)
{
keyInput.ResetText();
cyphertextResult.ResetText();
}
}
private void RC4DecryptExecutor()
{
bool missingCypher = ValidateUserEntry(cyphertextResult.Text, "Cypher is missing!");
bool missingKey = ValidateUserEntry(keyInput.Text, "Key is missing!");
plaintextInput.Text = rc4Alg.Decrypt(cyphertextResult.Text);
if (missingCypher || missingKey)
{
cyphertextResult.ResetText();
keyInput.ResetText();
plaintextInput.ResetText();
}
}
private void AESEncryptExecutor()
{
bool missingPlaintext = ValidateUserEntry(plaintextInput.Text, "Plaintext is missing!");
bool missingKey = ValidateUserEntry(keyInput.Text, "Key is missing!");
cyphertextResult.Text = aesAlg.Encrypt(plaintextInput.Text, keyInput.Text);
if (missingPlaintext || missingKey)
{
keyInput.ResetText();
cyphertextResult.ResetText();
}
}
private void AESDecryptExecutor()
{
bool missingCypher = ValidateUserEntry(cyphertextResult.Text, "Cypher is missing!");
bool missingKey = ValidateUserEntry(keyInput.Text, "Key is missing!");
plaintextInput.Text = aesAlg.Decrypt(cyphertextResult.Text, keyInput.Text);
if (missingCypher || missingKey)
{
cyphertextResult.ResetText();
keyInput.ResetText();
plaintextInput.ResetText();
}
}
private void button1_Click(object sender, EventArgs e)
{
if (algSelectOpt.SelectedIndex == 0)
RSAEncryptExecutor();
if (algSelectOpt.SelectedIndex == 1)
DHEncryptExecutor();
if (algSelectOpt.SelectedIndex == 2)
AESEncryptExecutor();
if (algSelectOpt.SelectedIndex == 3)
RC4EncryptExecutor();
}
private void button2_Click_1(object sender, EventArgs e)
{
if (algSelectOpt.SelectedIndex == 0)
RSADecryptExecutor();
if (algSelectOpt.SelectedIndex == 1)
DHDecryptExecutor();
if (algSelectOpt.SelectedIndex == 2)
AESDecryptExecutor();
if (algSelectOpt.SelectedIndex == 3)
RC4DecryptExecutor();
}
private void button3_Click(object sender, EventArgs e)
{
algSelectOpt.SelectedIndex = -1;
plaintextInput.ResetText();
keyInput.ResetText();
cyphertextResult.ResetText();
}
private void button4_Click(object sender, EventArgs e)
{
plaintextInput.ResetText();
}
private void button5_Click(object sender, EventArgs e)
{
cyphertextResult.ResetText();
}
private void button6_Click(object sender, EventArgs e)
{
keyInput.ResetText();
}
private void algSelectOpt_SelectedIndexChanged(object sender, EventArgs e)
{
plaintextInput.ResetText();
keyInput.ResetText();
cyphertextResult.ResetText();
}
}
}