-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form1.cs
426 lines (379 loc) · 17.7 KB
/
Form1.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Collections;
namespace StegProject
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
const int ENCRYP_PESENT_SIZE = 1;
const int ENCRYP_TEXT_SIZE = 3;
const int ENCRYP_TEXT_MAX_SIZE = 999;
private BitArray ByteToBit(byte src) {
BitArray bitArray = new BitArray(8);
bool st = false;
for (int i = 0; i < 8; i++)
{
if ((src >> i & 1) == 1) {
st = true;
} else st = false;
bitArray[i] = st;
}
return bitArray;
}
private byte BitToByte(BitArray scr) {
byte num = 0;
for (int i = 0; i < scr.Count; i++)
if (scr[i] == true)
num += (byte)Math.Pow(2, i);
return num;
}
/*Проверяет, зашифрован ли файл, возвраещает true, если символ в первом пикслеле равен / иначе false */
private bool isEncryption(Bitmap scr)
{
byte[] rez = new byte[1];
Color color = scr.GetPixel(0, 0);
BitArray colorArray = ByteToBit(color.R); //получаем байт цвета и преобразуем в массив бит
BitArray messageArray = ByteToBit(color.R); ;//инициализируем результирующий массив бит
messageArray[0] = colorArray[0];
messageArray[1] = colorArray[1];
colorArray = ByteToBit(color.G);//получаем байт цвета и преобразуем в массив бит
messageArray[2] = colorArray[0];
messageArray[3] = colorArray[1];
messageArray[4] = colorArray[2];
colorArray = ByteToBit(color.B);//получаем байт цвета и преобразуем в массив бит
messageArray[5] = colorArray[0];
messageArray[6] = colorArray[1];
messageArray[7] = colorArray[2];
rez[0] = BitToByte(messageArray); //получаем байт символа, записанного в 1 пикселе
string m = Encoding.GetEncoding(1251).GetString(rez);
if (m == "/")
{
return true;
}
else return false;
}
/*Нормализует количество символов для шифрования,чтобы они всегда занимали ENCRYP_TEXT_SIZE байт*/
private byte[] NormalizeWriteCount(byte[] CountSymbols)
{
int PaddingByte = ENCRYP_TEXT_SIZE - CountSymbols.Length;
byte[] WriteCount = new byte[ENCRYP_TEXT_SIZE];
for (int j = 0; j < PaddingByte; j++)
{
WriteCount[j] = 0x30;
}
for (int j = PaddingByte; j < ENCRYP_TEXT_SIZE; j++)
{
WriteCount[j] = CountSymbols[j - PaddingByte];
}
return WriteCount;
}
/*Записыает количество символов для шифрования в первые биты картинки */
private void WriteCountText(int count, Bitmap src) {
byte[] CountSymbols = Encoding.GetEncoding(1251).GetBytes(count.ToString());
if (CountSymbols.Length < ENCRYP_TEXT_SIZE)
{
CountSymbols = NormalizeWriteCount(CountSymbols);
}
for (int i = 0; i < ENCRYP_TEXT_SIZE; i++)
{
BitArray bitCount = ByteToBit(CountSymbols[i]); //биты количества символов
Color pColor = src.GetPixel(0, i + 1);
BitArray bitsCurColor = ByteToBit(pColor.R); //бит цветов текущего пикселя
bitsCurColor[0] = bitCount[0];
bitsCurColor[1] = bitCount[1];
byte nR = BitToByte(bitsCurColor); //новый бит цвета пиксея
bitsCurColor = ByteToBit(pColor.G);//бит бит цветов текущего пикселя
bitsCurColor[0] = bitCount[2];
bitsCurColor[1] = bitCount[3];
bitsCurColor[2] = bitCount[4];
byte nG = BitToByte(bitsCurColor);//новый цвет пиксея
bitsCurColor = ByteToBit(pColor.B);//бит бит цветов текущего пикселя
bitsCurColor[0] = bitCount[5];
bitsCurColor[1] = bitCount[6];
bitsCurColor[2] = bitCount[7];
byte nB = BitToByte(bitsCurColor);//новый цвет пиксея
Color nColor = Color.FromArgb(nR, nG, nB); //новый цвет из полученных битов
src.SetPixel(0, i + 1, nColor); //записали полученный цвет в картинку
}
}
/*Читает количество символов для дешифрования из первых бит картинки*/
private int ReadCountText(Bitmap src) {
byte[] rez = new byte[ENCRYP_TEXT_SIZE];
for (int i = 0; i < ENCRYP_TEXT_SIZE; i++)
{
Color color = src.GetPixel(0, i + 1);
BitArray colorArray = ByteToBit(color.R); //биты цвета
BitArray bitCount = ByteToBit(color.R); ; //инициализация результирующего массива бит
bitCount[0] = colorArray[0];
bitCount[1] = colorArray[1];
colorArray = ByteToBit(color.G);
bitCount[2] = colorArray[0];
bitCount[3] = colorArray[1];
bitCount[4] = colorArray[2];
colorArray = ByteToBit(color.B);
bitCount[5] = colorArray[0];
bitCount[6] = colorArray[1];
bitCount[7] = colorArray[2];
rez[i] = BitToByte(bitCount);
}
string m = Encoding.GetEncoding(1251).GetString(rez);
return Convert.ToInt32(m, 10);
}
/* Открыть файл для шифрования */
private void button1_Click(object sender, EventArgs e)
{
string FilePic;
string FileText;
OpenFileDialog dPic = new OpenFileDialog();
dPic.Filter = "Файлы изображений (*.bmp)|*.bmp|Все файлы (*.*)|*.*";
if (dPic.ShowDialog() == DialogResult.OK)
{
FilePic = dPic.FileName;
}
else
{
FilePic = "";
return;
}
FileStream rFile;
try
{
rFile = new FileStream(FilePic, FileMode.Open); //открываем поток
}
catch (IOException)
{
MessageBox.Show("Ошибка открытия файла", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
Bitmap bPic = new Bitmap(rFile);
OpenFileDialog dText = new OpenFileDialog();
dText.Filter = "Текстовые файлы (*.txt)|*.txt|Все файлы (*.*)|*.*";
if (dText.ShowDialog() == DialogResult.OK)
{
FileText = dText.FileName;
}
else
{
FileText = "";
return;
}
FileStream rText;
try
{
rText = new FileStream(FileText, FileMode.Open); //открываем поток
}
catch (IOException)
{
MessageBox.Show("Ошибка открытия файла", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
BinaryReader bText = new BinaryReader(rText, Encoding.ASCII);
List<byte> bList = new List<byte>();
while (bText.PeekChar() != -1) { //считали весь текстовый файл для шифрования в лист байт
bList.Add(bText.ReadByte());
}
int CountText = bList.Count; // в CountText - количество в байтах текста, который нужно закодировать
bText.Close();
rFile.Close();
//проверям, что размер не выходит за рамки максимального, поскольку для хранения размера используется
//ограниченное количество байт
if (CountText > (ENCRYP_TEXT_MAX_SIZE - ENCRYP_PESENT_SIZE - ENCRYP_TEXT_SIZE)) {
MessageBox.Show("Размер текста велик для данного алгоритма, уменьшите размер", "Информация", MessageBoxButtons.OK);
return;
}
//проверяем, поместится ли исходный текст в картинке
if (CountText > (bPic.Width * bPic.Height)) {
MessageBox.Show("Выбранная картинка мала для размещения выбранного текста", "Информация", MessageBoxButtons.OK);
return;
}
//проверяем, может быть картинка уже зашифрована
if (isEncryption(bPic))
{
MessageBox.Show("Файл уже зашифрован", "Информация", MessageBoxButtons.OK);
return;
}
byte [] Symbol = Encoding.GetEncoding(1251).GetBytes("/");
BitArray ArrBeginSymbol = ByteToBit(Symbol[0]);
Color curColor = bPic.GetPixel(0, 0);
BitArray tempArray = ByteToBit(curColor.R);
tempArray[0] = ArrBeginSymbol[0];
tempArray[1] = ArrBeginSymbol[1];
byte nR = BitToByte(tempArray);
tempArray = ByteToBit(curColor.G);
tempArray[0] = ArrBeginSymbol[2];
tempArray[1] = ArrBeginSymbol[3];
tempArray[2] = ArrBeginSymbol[4];
byte nG = BitToByte(tempArray);
tempArray = ByteToBit(curColor.B);
tempArray[0] = ArrBeginSymbol[5];
tempArray[1] = ArrBeginSymbol[6];
tempArray[2] = ArrBeginSymbol[7];
byte nB = BitToByte(tempArray);
Color nColor = Color.FromArgb(nR, nG, nB);
bPic.SetPixel(0, 0, nColor);
//то есть в первом пикселе будет символ /, который говорит о том, что картика зашифрована
WriteCountText(CountText, bPic); //записываем количество символов для шифрования
int index = 0;
bool st = false;
for (int i = ENCRYP_TEXT_SIZE + 1; i < bPic.Width; i++) {
for (int j = 0; j < bPic.Height; j++) {
Color pixelColor = bPic.GetPixel(i, j);
if (index == bList.Count) {
st = true;
break;
}
BitArray colorArray = ByteToBit(pixelColor.R);
BitArray messageArray = ByteToBit(bList[index]);
colorArray[0] = messageArray[0]; //меняем
colorArray[1] = messageArray[1]; // в нашем цвете биты
byte newR = BitToByte(colorArray);
colorArray = ByteToBit(pixelColor.G);
colorArray[0] = messageArray[2];
colorArray[1] = messageArray[3];
colorArray[2] = messageArray[4];
byte newG = BitToByte(colorArray);
colorArray = ByteToBit(pixelColor.B);
colorArray[0] = messageArray[5];
colorArray[1] = messageArray[6];
colorArray[2] = messageArray[7];
byte newB = BitToByte(colorArray);
Color newColor = Color.FromArgb(newR, newG, newB);
bPic.SetPixel(i, j, newColor);
index ++;
}
if (st) {
break;
}
}
pictureBox1.Image = bPic;
String sFilePic;
SaveFileDialog dSavePic = new SaveFileDialog();
dSavePic.Filter = "Файлы изображений (*.bmp)|*.bmp|Все файлы (*.*)|*.*";
if (dSavePic.ShowDialog() == DialogResult.OK)
{
sFilePic = dSavePic.FileName;
}
else
{
sFilePic = "";
return;
};
FileStream wFile;
try
{
wFile = new FileStream(sFilePic, FileMode.Create); //открываем поток на запись результатов
}
catch (IOException)
{
MessageBox.Show("Ошибка открытия файла на запись", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
bPic.Save(wFile, System.Drawing.Imaging.ImageFormat.Bmp);
wFile.Close(); //закрываем поток
}
/*Открыть файл для дешифрования */
private void button2_Click(object sender, EventArgs e)
{
string FilePic;
OpenFileDialog dPic = new OpenFileDialog();
dPic.Filter = "Файлы изображений (*.bmp)|*.bmp|Все файлы (*.*)|*.*";
if (dPic.ShowDialog() == DialogResult.OK)
{
FilePic = dPic.FileName;
}
else
{
FilePic = "";
return;
}
FileStream rFile;
try
{
rFile = new FileStream(FilePic, FileMode.Open); //открываем поток
}
catch (IOException)
{
MessageBox.Show("Ошибка открытия файла", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
Bitmap bPic = new Bitmap(rFile);
if (!isEncryption(bPic)) {
MessageBox.Show("В файле нет зашифрованной информации", "Информация", MessageBoxButtons.OK);
rFile.Close();
return;
}
int countSymbol = ReadCountText(bPic); //считали количество зашифрованных символов
byte[] message = new byte[countSymbol];
int index = 0;
bool st = false;
for (int i = ENCRYP_TEXT_SIZE + 1; i < bPic.Width; i++) {
for (int j = 0; j < bPic.Height; j++) {
Color pixelColor = bPic.GetPixel(i, j);
if (index == message.Length) {
st = true;
break;
}
BitArray colorArray = ByteToBit(pixelColor.R);
BitArray messageArray = ByteToBit(pixelColor.R); ;
messageArray[0] = colorArray[0];
messageArray[1] = colorArray[1];
colorArray = ByteToBit(pixelColor.G);
messageArray[2] = colorArray[0];
messageArray[3] = colorArray[1];
messageArray[4] = colorArray[2];
colorArray = ByteToBit(pixelColor.B);
messageArray[5] = colorArray[0];
messageArray[6] = colorArray[1];
messageArray[7] = colorArray[2];
message[index] = BitToByte(messageArray);
index++;
}
if (st) {
break;
}
}
string strMessage = Encoding.GetEncoding(1251).GetString(message);
string sFileText;
SaveFileDialog dSaveText = new SaveFileDialog();
dSaveText.Filter = "Текстовые файлы (*.txt)|*.txt|Все файлы (*.*)|*.*";
if (dSaveText.ShowDialog() == DialogResult.OK)
{
sFileText = dSaveText.FileName;
}
else
{
sFileText = "";
rFile.Close();
return;
};
FileStream wFile;
try
{
wFile = new FileStream(sFileText, FileMode.Create); //открываем поток на запись результатов
}
catch (IOException)
{
MessageBox.Show("Ошибка открытия файла на запись", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
rFile.Close();
return;
}
StreamWriter wText = new StreamWriter(wFile, Encoding.Default);
wText.Write(strMessage);
MessageBox.Show("Текст записан в файл", "Информация", MessageBoxButtons.OK);
wText.Close();
wFile.Close(); //закрываем поток
rFile.Close();
}
}
}