-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdecrypt.c
448 lines (392 loc) · 9.32 KB
/
decrypt.c
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/*
* Author: Marco Squarcina <[email protected]>
* Date: 10/01/2010
* Version: 0.5
* License: MIT, see LICENSE for details
* Description: decrypt.c, implementation of an improved jackobsen algorithm
* to break substitution ciphers.
*/
#include <ctype.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include "decrypt.h"
#include "utils.h"
/* function implementations */
void
guess_key(FILE *f, char k[KEYSIZE]) {
int occ[KEYSIZE], i, j, c, max, tmp = 0;
/* reset occurrences vector values to 0 */
for(i=0; i<KEYSIZE; i++)
occ[i] = 0;
/* count characters occurrences */
i = 0;
rewind(f);
c = fgetc(f);
while(1) {
while(c != EOF && !isalpha(c))
c = fgetc(f);
if(c == EOF)
break;
c = tolower(c);
occ[c-OFFSET] += 1;
c = fgetc(f);
}
for(i=0; i<KEYSIZE; i++) {
max = -1;
/* find out most frequent char */
for(j=0; j<KEYSIZE; j++)
if(occ[j] >= max) {
max = occ[j];
tmp = j;
}
occ[tmp] = -1;
k[i] = tmp+OFFSET;
}
}
void
print_key(char k[KEYSIZE]) {
int i;
for(i=0; i<KEYSIZE; i++)
printf("%c", k[i]);
printf("\n");
}
void
populate_bigram_matrix(FILE *f, float m[KEYSIZE][KEYSIZE]) {
int c0, c1, i, j, n;
/* reset matrix values to 0 */
for(i = 0; i<KEYSIZE; i++)
for(j=0; j<KEYSIZE; j++)
m[i][j] = 0;
/* count bigrams occurrences */
i = 0;
rewind(f);
c0 = fgetc(f);
c1 = fgetc(f);
while(1) {
/* skip until a valid bigram is found */
while(c1 != EOF && (!isalpha(c0) || !isalpha(c1))) {
c0 = c1;
c1 = fgetc(f);
}
if(c1 == EOF)
break;
c0 = tolower(c0);
c1 = tolower(c1);
m[c0-OFFSET][c1-OFFSET] += 1;
i++;
c0 = c1;
c1 = fgetc(f);
}
/* get bigram number */
n = i;
/* generate statistics */
for(i=0; i<KEYSIZE; i++)
for(j=0; j<KEYSIZE; j++)
m[i][j] = m[i][j]/n;
}
void
populate_trigram_matrix(FILE *f, float m[KEYSIZE][KEYSIZE][KEYSIZE]) {
int c0, c1, c2, i, j, k, n;
/* reset matrix values to 0 */
for(i = 0; i<KEYSIZE; i++)
for(j=0; j<KEYSIZE; j++)
for(k=0; k<KEYSIZE; k++)
m[i][j][k] = 0;
/* count trigrams occurrences */
i = 0;
rewind(f);
c0 = fgetc(f);
c1 = fgetc(f);
c2 = fgetc(f);
while(1) {
/* skip until a valid trigram is found */
while(c2 != EOF && (!isalpha(c0) || !isalpha(c1) || !isalpha(c2))) {
c0 = c1;
c1 = c2;
c2 = fgetc(f);
}
if(c2 == EOF)
break;
c0 = tolower(c0);
c1 = tolower(c1);
c2 = tolower(c2);
m[c0-OFFSET][c1-OFFSET][c2-OFFSET] += 1;
i++;
c0 = c1;
c1 = c2;
c2 = fgetc(f);
}
/* get trigram number */
n = i;
/* generate statistics */
for(i=0; i<KEYSIZE; i++)
for(j=0; j<KEYSIZE; j++)
for(k=0; k<KEYSIZE; k++)
m[i][j][k] = m[i][j][k]/n;
}
void
swap_in_bigram_matrix(float m[KEYSIZE][KEYSIZE], int a, int b) {
float t;
int i;
/* swap columns */
for(i=0; i<KEYSIZE; i++) {
t = m[i][a];
m[i][a] = m[i][b];
m[i][b] = t;
}
/* swap rows */
for(i=0; i<KEYSIZE; i++) {
t = m[a][i];
m[a][i] = m[b][i];
m[b][i] = t;
}
}
void
swap_in_trigram_matrix(float m[KEYSIZE][KEYSIZE][KEYSIZE], int a, int b) {
float t;
int i;
for(i=0; i<KEYSIZE; i++) {
t = m[i][a][b];
m[i][a][b] = m[i][b][a];
m[i][b][a] = t;
}
for(i=0; i<KEYSIZE; i++) {
t = m[a][i][b];
m[a][i][b] = m[b][i][a];
m[b][i][a] = t;
}
for(i=0; i<KEYSIZE; i++) {
t = m[a][b][i];
m[a][b][i] = m[b][a][i];
m[b][a][i] = t;
}
}
void
copy_bigram_matrix(float m1[KEYSIZE][KEYSIZE], float m2[KEYSIZE][KEYSIZE]) {
int i, j;
for(i=0; i<KEYSIZE; i++)
for(j=0; j<KEYSIZE; j++)
m1[i][j] = m2[i][j];
}
void
copy_trigram_matrix(float m1[KEYSIZE][KEYSIZE][KEYSIZE], float m2[KEYSIZE][KEYSIZE][KEYSIZE]) {
int i, j, k;
for(i=0; i<KEYSIZE; i++)
for(j=0; j<KEYSIZE; j++)
for(k=0; k<KEYSIZE; k++)
m1[i][j][k] = m2[i][j][k];
}
float
bigram_goodness(float m1[KEYSIZE][KEYSIZE], float m2[KEYSIZE][KEYSIZE]) {
int i, j;
float t = 0;
for(i=0; i<KEYSIZE; i++)
for(j=0; j<KEYSIZE; j++)
t += fabsf(m1[i][j] - m2[i][j]);
return t;
}
float
trigram_goodness(float m1[KEYSIZE][KEYSIZE][KEYSIZE], float m2[KEYSIZE][KEYSIZE][KEYSIZE]) {
int i, j, k;
float t = 0;
for(i=0; i<KEYSIZE; i++)
for(j=0; j<KEYSIZE; j++)
for(k=0; k<KEYSIZE; k++)
t += fabsf(m1[i][j][k] - m2[i][j][k]);
return t;
}
int
word_goodness(GList *l1, GList *l2) {
GList *iter1;
GList *iter2;
int t = 0;
iter1 = g_list_first(l1);
while(iter1 != NULL) {
iter2 = g_list_first(l2);
while(iter2 != NULL && ((Word *)iter2->data)->occ > 1) {
if(strcmp(((Word *)iter1->data)->word, ((Word *)iter2->data)->word) == 0) {
t += 1;
break;
}
iter2 = iter2->next;
}
iter1 = iter1->next;
}
return t;
}
char *
decrypt_to_file(FILE *f, char *k1, char *k2) {
int c, i;
char *outfle = "/tmp/.charemap.txt";
FILE *fo;
fo = fopen(outfle, "w");
rewind(f);
c = fgetc(f);
while(c != EOF) {
if(!isalpha(c))
putc(c, fo);
c = tolower(c);
for(i=0; i<KEYSIZE; i++)
if(k1[i] == c) {
putc(k2[i], fo);
break;
}
c = fgetc(f);
}
fclose(fo);
return outfle;
}
void
swap_in_key(char *k, int a, int b) {
char c;
c = k[a];
k[a] = k[b];
k[b] = c;
}
void
copy_key(char key1[KEYSIZE], char key2[KEYSIZE]) {
int i;
for(i=0; i<KEYSIZE; i++)
key1[i] = key2[i];
}
void
echo_file(FILE *f) {
int c;
rewind(f);
while((c = fgetc(f)) != EOF)
putchar(c);
}
void
decrypt(FILE *fi, FILE *fs) {
FILE *fptr;
char *fname;
float v = 0, v1 = 0, vt = 0, vt1 = 0;
int a = 0, b = 1, i = 0;
float Db[KEYSIZE][KEYSIZE];
float Eb[KEYSIZE][KEYSIZE];
float Db1[KEYSIZE][KEYSIZE];
float Dt[KEYSIZE][KEYSIZE][KEYSIZE];
float Et[KEYSIZE][KEYSIZE][KEYSIZE];
float Dt1[KEYSIZE][KEYSIZE][KEYSIZE];
char ks[KEYSIZE];
char key[KEYSIZE];
char k1[KEYSIZE];
GList *input_wlist = NULL;
GList *input_slist = NULL;
char loader[] = "|/-\\|";
int case_sensitive = 0; /* no case sensitive */
guess_key(fs, ks);
guess_key(fi, key);
fname = decrypt_to_file(fi, ks, key);
fptr = fopen(fname, "r");
populate_bigram_matrix(fptr, Db);
populate_trigram_matrix(fptr, Dt);
fclose(fptr);
populate_bigram_matrix(fs, Eb);
populate_trigram_matrix(fs, Et);
v = bigram_goodness(Db, Eb);
vt = trigram_goodness(Dt, Et);
copy_bigram_matrix(Db1, Db);
copy_trigram_matrix(Dt1, Dt);
copy_key(k1, key);
printf("Decripting using bigram and trigram detection...\n");
while(1) {
printf("\r%c", loader[i++ % 5]);
swap_in_key(k1, a, a+b);
swap_in_bigram_matrix(Db1, k1[a]-OFFSET, k1[a+b]-OFFSET);
swap_in_trigram_matrix(Dt1, k1[a]-OFFSET, k1[a+b]-OFFSET);
a = a+1;
if(a+b > KEYSIZE-1) {
a = 0;
b = b+1;
if(b == KEYSIZE-1) {
printf("\rdone!\n\nThe mapping found is:\n\n\t<- ");
print_key(ks);
printf("\t ||||||||||||||||||||||||||\n");
printf("\t-> ");
print_key(key);
printf("\nDecryption result:\n\n");
fname = decrypt_to_file(fi, ks, key);
fptr = fopen(fname, "r");
echo_file(fptr);
fclose(fptr);
remove(fname);
putchar('\n');
break;
}
}
v1 = bigram_goodness(Db1, Eb);
vt1 = trigram_goodness(Dt1, Et);
if(v1+vt1 < v+vt) {
a = 0;
b = 1;
v = v1;
vt = vt1;
copy_key(key, k1);
copy_bigram_matrix(Db, Db1);
copy_trigram_matrix(Dt, Dt1);
}
else {
copy_key(k1, key);
copy_bigram_matrix(Db1, Db);
copy_trigram_matrix(Dt1, Dt);
}
}
fname = decrypt_to_file(fi, ks, key);
fptr = fopen(fname, "r");
input_wlist = count_words(fptr, input_wlist, case_sensitive);
fclose(fptr);
input_slist = count_words(fs, input_slist, case_sensitive);
int w = 0, w1 = 0;
w = word_goodness(input_wlist, input_slist);
free_list(input_wlist);
input_wlist = NULL;
copy_key(k1, key);
a = 0;
b = 1;
printf("Affining result with dictionary-based decryption...\n");
while(1) {
printf("\r%c", loader[i++ % 5]);
swap_in_key(k1, a, a+b);
a = a+1;
if(a+b > KEYSIZE-1) {
a = 0;
b = b+1;
if(b == KEYSIZE-1) {
printf("\rdone!\n\nThe mapping found is:\n\n\t<- ");
print_key(ks);
printf("\t ||||||||||||||||||||||||||\n");
printf("\t-> ");
print_key(key);
printf("\nDecryption result:\n\n");
decrypt_to_file(fi, ks, key);
fptr = fopen(fname, "r");
echo_file(fptr);
fclose(fptr);
putchar('\n');
break;
}
}
fname = decrypt_to_file(fi, ks, k1);
fptr = fopen(fname, "r");
input_wlist = count_words(fptr, input_wlist, case_sensitive);
fclose(fptr);
w1 = word_goodness(input_wlist, input_slist);
free_list(input_wlist);
input_wlist = NULL;
if(w1 > w) {
a = 0;
b = 1;
w = w1;
copy_key(key, k1);
}
else {
copy_key(k1, key);
}
}
remove(fname);
free_list(input_wlist);
free_list(input_slist);
}