-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainForm.cs
More file actions
75 lines (67 loc) · 2.13 KB
/
Copy pathMainForm.cs
File metadata and controls
75 lines (67 loc) · 2.13 KB
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using Xunit;
namespace EncryptedTextMethodCreator
{
public partial class MainForm : Form
{
private readonly string _alphabet;
private readonly Random _random = new();
public MainForm()
{
InitializeComponent();
Utility.TestEncodeDecodeXor();
Utility.TestEncodeDecodeAes();
_alphabet = CreateAlphabet();
}
private string CreateAlphabet()
{
string tmp = "";
for (char c = ' '; c <= '~'; c++)
{
tmp += c;
}
return tmp;
}
private void button1_Click(object sender, EventArgs e)
{
string tmp = "";
for (int i = 0; i < 16; i++)
{
int indeks = _random.Next(0, _alphabet.Length);
tmp += _alphabet[indeks];
}
tbKey.Text = tmp;
CreateMethod();
}
private void textText_TextChanged(object sender, EventArgs e)
{
CreateMethod();
}
private void Form1_Load(object sender, EventArgs e)
{
btnRandom.PerformClick();
}
private void CreateMethod()
{
Utility.EncryptionType type;
if (rbAES.Checked) type = Utility.EncryptionType.Aes;
else if (rbXtea.Checked) type = Utility.EncryptionType.Xtea;
else type = Utility.EncryptionType.Xor;
var (hexBytes, hexKey) = Utility.EncodeData(type, tbClearText.Text, tbKey.Text);
tbResult.Text = hexBytes.Replace("0x", "").Replace(",", "");
tbMethod.Text = Utility.CreateMethod(type, tbClearText.Text, tbKey.Text, hexBytes, hexKey);
}
private void rb_CheckedChanged(object sender, EventArgs e)
{
CreateMethod();
}
}
}