-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
159 lines (152 loc) · 6.92 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
using System;
using System.IO;
namespace MD5
{
// Programa nr.10 (MD5)
// Atliko Tautvydas Milčiūnas IT 3kursas, 2 grupė.
static class Program
{
static byte[] _byteArray;
public static void Main(string[] args)
{
// Tikriname ar gauti argumentai. Neįvedus jokių argumentų programa automatiškai uždaroma.
if (args != null && args.Length > 0)
{
// Tikriname veikimo rėžimus (0, 1, 2)
// Rėžimas 0 išveda rezultatą i konsolės langą.
if (args[0] == "0")
{
if (File.Exists(args[1]))
{
// Nuskaitome failą.
_byteArray = File.ReadAllBytes(args[1]);
Console.WriteLine();
Console.WriteLine("MD5 reikšmė: " + Md5.ComputeHash(_byteArray));
Console.WriteLine();
}
else
{
Console.WriteLine("Įvesties failas neegzistuoja");
}
}
// Rėžimas 1 išveda rezultatą į pasirinktą failą.
else if (args[0] == "1")
{
if (File.Exists(args[1]))
{
// Nuskaitome failą.
_byteArray = File.ReadAllBytes(args[1]);
if (args.Length > 2)
{
string path = @".\" + args[2];
using (StreamWriter sw = File.AppendText(path))
{
sw.WriteLine(Md5.ComputeHash(_byteArray));
Console.WriteLine();
Console.WriteLine("MD5 reikšmė įvesta į failą: " + args[2]);
sw.Close();
}
}
else
{
Console.WriteLine("Išvesties failas neegzistuoja");
}
}
else
{
Console.WriteLine("Įvesties failas neegzistuoja");
}
}
// Rėžimas 2 skirtas testuoti su test vektoriais.
else if (args[0] == "2")
{
if (File.Exists(args[1]))
{
// Nuskaitome failo tekstą test vektoriui surasti.
var text = File.ReadAllText(args[1]);
if (text == "abc")
{
// Nuskaitome failą.
_byteArray = File.ReadAllBytes(args[1]);
Console.WriteLine("This is a test vector.");
Console.WriteLine();
Console.WriteLine("Test text: " + text);
Console.WriteLine();
Console.WriteLine("MD5 reikšmė: " + Md5.ComputeHash(_byteArray));
Console.WriteLine("Test vector: " + "900150983CD24FB0D6963F7D28E17F72".ToLower());
}
else if (text == "The quick brown fox jumps over the lazy dog")
{
_byteArray = File.ReadAllBytes(args[1]);
Console.WriteLine("This is a test vector.");
Console.WriteLine();
Console.WriteLine("Test text: " + text);
Console.WriteLine();
Console.WriteLine("MD5 reikšmė: " + Md5.ComputeHash(_byteArray));
Console.WriteLine("Test vector: 9e107d9d372bb6826bd81d3542a419d6");
}
else if (text == "")
{
_byteArray = File.ReadAllBytes(args[1]);
Console.WriteLine("This is a test vector.");
Console.WriteLine();
Console.WriteLine("Test text: " + text);
Console.WriteLine();
Console.WriteLine("MD5 reikšmė: " + Md5.ComputeHash(_byteArray));
Console.WriteLine("Test vector: d41d8cd98f00b204e9800998ecf8427e");
}
else if (text == "12345678901234567890123456789012345678901234567890123456789012345678901234567890")
{
_byteArray = File.ReadAllBytes(args[1]);
Console.WriteLine("This is a test vector.");
Console.WriteLine();
Console.WriteLine("Test text: " + text);
Console.WriteLine();
Console.WriteLine("MD5 reikšmė: " + Md5.ComputeHash(_byteArray));
Console.WriteLine("Test vector: 57edf4a22be3c955ac49da2e2107b67a");
}
else if (text == "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq")
{
_byteArray = File.ReadAllBytes(args[1]);
Console.WriteLine("This is a test vector.");
Console.WriteLine();
Console.WriteLine("Test text: " + text);
Console.WriteLine();
Console.WriteLine("MD5 reikšmė: " + Md5.ComputeHash(_byteArray));
Console.WriteLine("Test vector: " + "8215EF0796A20BCAAAE116D3876C664A".ToLower());
}
else
{
Console.WriteLine();
Console.WriteLine("Tokio test vector nėra.");
Console.WriteLine();
}
}
else
{
Console.WriteLine("Įvesties failas neegzistuoja");
}
}
else
{
if (File.Exists(args[0]))
{
_byteArray = File.ReadAllBytes(args[0]);
Console.WriteLine();
Console.WriteLine("MD5 reikšmė: " + Md5.ComputeHash(_byteArray));
Console.WriteLine();
}
else
{
Console.WriteLine("Įvesties failas neegzistuoja");
}
}
Console.ReadLine();
}
else
{
Environment.Exit(0);
}
}
}
}