-
Notifications
You must be signed in to change notification settings - Fork 0
/
adfgvx.c
242 lines (195 loc) · 6.22 KB
/
adfgvx.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
//
// Created by Lorenzo Cardinali on 18/09/2021.
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "adfgvx.h"
#include "linklistlib.h"
#include "filelib.h"
/**
* Genera il modulo tra 2 numeri.
* Se il valore di val2 e' < 0 il risultato del modulo sara' 0.
*
* @param val1 Parametro 1.
* @param val2 Parametro 2.
* @return modulo.
*/
int mod(int val1, int val2);
/**
* Riempie una lista con una serie definita.
*
* @param head Testa della lista.
* @param max Numero massimo elementi serie.
* @return una lista con una serie definita.
*/
lklist *fill_list(lklist *head, int max);
/**
* Riempie un array leggendo un quantitativo di N caratteri da un file.
*
* @param input_file File da leggere.
* @param array Array da riempire.
* @param count Quantità di elementi da leggere.
* @return Puntatore all'array riempito.
*/
void fill_array(FILE *input_file, byte *array, int count);
/**
* Carica i dati necessari per utilizzare la chiave di criptazione.
*
* @param key File della chiave.
* @param keytable Tabella della chiave.
* @return Puntatore alla tabella della chiave.
*/
void fill_table(FILE *key, t_key *keytable);
/**
* Cripta un file usando una chiave precedentemente caricata in memoria.
*
* @param key_table Chiave caricata in memoria.
* @param input_file File da criptare.
* @param output_file File criptato.
*/
void encode_file(t_key *key_table, FILE *input_file, FILE *output_file);
/**
* De-cripta un file usando una chiave precedentemente caricata in memoria.
*
* @param key_table Chiave caricata in memoria.
* @param input_file File da de-criptare.
* @param output_file File de-criptato.
*/
void decode_file(t_key *key_table, FILE *input_file, FILE *output_file);
/**
* Ricerca la posizione di un byte in una matrice k
*
* @param key_table Struct dove la matrice e' memorizzata.
* @param position Posisizione da aggiornare.
*/
void find_byte(t_key *key_table, t_pos *position);
/**
* Divide un byte in 2 nibble e ricerca la loro posizione in 2 array.
*
* @param key_table Struct dove gli array sono memorizzati.
* @param position Posisizione da aggiornare.
*/
void find_nibble(t_key *key_table, t_pos *position);
/**
* # # # Funzioni principali # # #
*/
void encode(char *key_file, char *input_file, char *output_file) {
FILE *key = open_input_file(key_file);
t_key keytable;
memset(&keytable, 0, sizeof(t_key));
fill_table(key, &keytable);
FILE *input = open_input_file(input_file);
FILE *output = open_output_file(output_file);
encode_file(&keytable, input, output);
close_file(key);
close_file(input);
close_file(output);
}
void decode(char *key_file, char *input_file, char *output_file) {
FILE *key = open_input_file(key_file);
t_key keytable;
memset(&keytable, 0, sizeof(t_key));
fill_table(key, &keytable);
FILE *input = open_input_file(input_file);
FILE *output = open_output_file(output_file);
decode_file(&keytable, input, output);
close_file(key);
close_file(input);
close_file(output);
}
void genkey(char *key_file, char *s1, char *k1, char *s2, char *k2, char *s3, char *k3) {
FILE *keyfile = open_output_file(key_file);
lklist *L1 = NULL;
const int key_lenght[] = {16, 16, 256};
const int vars[6] = {strtol(s1, NULL, 36), strtol(k1, NULL, 36),
strtol(s2, NULL, 36), strtol(k2, NULL, 36),
strtol(s3, NULL, 36), strtol(k3, NULL, 36)};
for (int i = 0; i < 3; ++i) {
L1 = fill_list(L1, key_lenght[i]);
int c = mod(vars[i * 2], key_lenght[i]), n = countNodes(L1);
while (n != 0) {
byte v = get_node(L1, c);
L1 = remove_node(L1, c);
fputc(v, keyfile);
n = countNodes(L1);
c = mod(c + vars[i * 2 + 1], n);
}
}
close_file(keyfile);
}
/**
* # # # Funzioni di utilita' # # #
*/
void encode_file(t_key *key_table, FILE *input_file, FILE *output_file) {
t_pos position;
memset(&position, 0, sizeof(t_pos));
size_t file_length = file_size(input_file);
byte b2;
for (position.k = 0; position.k < file_length; ++position.k) {
position.b = fgetc(input_file);
find_byte(key_table, &position);
b2 = key_table->C[mod(position.i + position.k, 16)] << 4 ^
key_table->R[mod(position.j + position.k, 16)];
fputc(b2, output_file);
}
}
void decode_file(t_key *key_table, FILE *input_file, FILE *output_file) {
t_pos position;
memset(&position, 0, sizeof(t_pos));
size_t file_length = file_size(input_file);
byte b2;
for (position.k = 0; position.k < file_length; ++position.k) {
position.b = fgetc(input_file);
find_nibble(key_table, &position);
b2 = key_table->K[mod(position.j - position.k, 16)]
[mod(position.i - position.k, 16)];
fputc(b2, output_file);
}
}
int mod(int val1, int val2) {
if (val2 == 0)
return 0;
int result = val1 % val2;
if (result < 0)
result += val2;
return result;
}
lklist *fill_list(lklist *head, int max) {
for (int i = 0; i < max; ++i)
head = add_node(head, i);
return head;
}
void fill_table(FILE *key, t_key *keytable) {
if (file_size(key) != 288) {
perror("Keyfile non valido\n");
exit(1);
}
fill_array(key, keytable->C, 16);
fill_array(key, keytable->R, 16);
for (int i = 0; i < 16; ++i)
fill_array(key, keytable->K[i], 16);
}
void fill_array(FILE *input_file, byte *array, int count) {
for (int i = 0; i < count; ++i)
array[i] = fgetc(input_file);
}
void find_byte(t_key *key_table, t_pos *position) {
for (position->i = 0; position->i < 16; ++position->i) {
for (position->j = 0; position->j < 16; ++position->j) {
if (position->b == key_table->K[position->j][position->i])
return;
}
}
}
void find_nibble(t_key *key_table, t_pos *position) {
byte v1 = (position->b >> 4) & 0x0F, v2 = position->b & 0x0F;
for (position->i = 0; position->i < 16; ++position->i) {
if (v1 == key_table->C[position->i])
break;
}
for (position->j = 0; position->j < 16; ++position->j) {
if (v2 == key_table->R[position->j])
break;
}
}