-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.c
424 lines (356 loc) · 11.6 KB
/
main.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
/*
Title: Vigenerator v4.0
Author: Jonathan Jacobson (jon@suparosa.com)
Github: https://github.com/j-jacobson/Vigenerator/
*/
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#define MAX_SZ 10000
int i, j, k;
int columns;
char message[MAX_SZ], key[MAX_SZ];
char message_raw[MAX_SZ], key_raw[MAX_SZ], columns_raw[MAX_SZ];
char encrypted[MAX_SZ];
char choice[1];
/* Problems that should be fixed in the future:
* A guy on stack exchange said that you should use strtol() instead of atoi() because it has better error handling.
* numberToWord should be a function to promote reuse
* despacer should be a separate function
*/
void digitToChar(const char *in, char *out) {
int j = 0; // Index for the out array
// Loop through each character in 'in'
for (int i = 0; in[i] != '\0'; i++) {
if (isdigit(in[i])) {
if (in[i] == '0') {
out[j++] = 'z';
out[j++] = 'e';
out[j++] = 'r';
out[j++] = 'o';
}
else if (in[i] == '1') {
out[j++] = 'o';
out[j++] = 'n';
out[j++] = 'e';
}
else if (in[i] == '2') {
out[j++] = 't';
out[j++] = 'w';
out[j++] = 'o';
}
else if (in[i] == '3') {
out[j++] = 't';
out[j++] = 'h';
out[j++] = 'r';
out[j++] = 'e';
out[j++] = 'e';
}
else if (in[i] == '4') {
out[j++] = 'f';
out[j++] = 'o';
out[j++] = 'u';
out[j++] = 'r';
}
else if (in[i] == '5') {
out[j++] = 'f';
out[j++] = 'i';
out[j++] = 'v';
out[j++] = 'e';
}
else if (in[i] == '6') {
out[j++] = 's';
out[j++] = 'i';
out[j++] = 'x';
}
else if (in[i] == '7') {
out[j++] = 's';
out[j++] = 'e';
out[j++] = 'v';
out[j++] = 'e';
out[j++] = 'n';
}
else if (in[i] == '8') {
out[j++] = 'e';
out[j++] = 'i';
out[j++] = 'g';
out[j++] = 'h';
out[j++] = 't';
}
else if (in[i] == '9') {
out[j++] = 'n';
out[j++] = 'i';
out[j++] = 'n';
out[j++] = 'e';
}
}
}
}
/* Creates and prints the tabla recta */
void table() {
do {
/* Get the number of columns and convert to an integer. */
printf("Type the number of columns you need: ");
fgets(columns_raw, MAX_SZ, stdin);
columns = atoi(columns_raw);
/* Size checking. */
if(columns < 1)
printf("ERROR: Too few columns.\n");
else if(columns > 50)
printf("ERROR: Too many columns.\n");
} while(columns < 1 | columns > 50);
do{
/* Get the Key and remove the spaces */
printf("Type your key: ");
fgets(key_raw, MAX_SZ, stdin);
for(i = 0, j = 0; i < strlen(key_raw); i++) {
/* Replace any number in the key with the their word equivalent. */
if(isdigit(key_raw[i])) {
digitToChar(&key_raw[i], key);
}
if(!(isalpha(key_raw[i]))) {
continue;
}
key[j++] = toupper(key_raw[i]);
}
/* Size checking */
if(strlen(key) < 1) {
printf("ERROR: Key too short.\n");
}
else if(strlen(key) > MAX_SZ) {
printf("ERROR: Key too long.\n");
}
} while(strlen(key) < 1 | strlen(key) > MAX_SZ);
/* Print the first row, the Key, offset by a space. */
for(i = 0, j = 0, printf("\n "); i < columns; i++, j++) {
if(!(key[j])) {
j = 0;
}
printf("%c ", key[j]);
}
for(i = 0, printf("\n -"); i < columns; i++) {
printf("--");
}
printf("\n");
/* Table making function. */
/* Print the letter of the alphabet, a '|' character, and then the letter that should be next in that alphabet. */
for(k = 0; k < 26; k++) {
printf("%c |", 'a' + k);
for(i = 0, j = 0; i < columns; i++, j++) {
if(!key[j]) {
j = 0;
}
// Handle lowercase and uppercase letters properly
if ('a' <= key[j] && key[j] <= 'z') {
// For lowercase letters
if ((key[j] + 1 + k) > 'z') {
printf(" %c", (key[j] + k - ('z' - 'a')));
} else {
printf(" %c", key[j] + k + 1);
}
} else if ('A' <= key[j] && key[j] <= 'Z') {
// For uppercase letters
if ((key[j] + k + 1) > 'Z') {
printf(" %c", (key[j] + k - ('Z' - 'A')));
} else {
printf(" %c", key[j] + k + 1);
}
}
}
printf("\n");
}
}
/* Encryption function */
void encrypt(){
do{
/* Get Message and remove the spaces. */
printf("Please type your message: ");
fgets(message_raw, MAX_SZ, stdin);
for(i = 0, j = 0; i < strlen(message_raw); i++){
/* Replace any number in the Message with the their word equivalent. */
if(isdigit(message_raw[i])) {
digitToChar(&message_raw[i], key);
}
if(!(isalpha(message_raw[i]))) {
continue;
}
message[j++] = message_raw[i];
}
/* Length checking. */
if(strlen(message) < 1) {
printf("ERROR: Message too short.\n");
}
else if(strlen(message) > MAX_SZ) {
printf("ERROR: Message too long.\n");
}
} while(strlen(message) < 1 | strlen(message) > MAX_SZ);
do {
/* Get Key and remove spaces. */
printf("Please type your key: ");
fgets(key_raw, MAX_SZ, stdin);
for(i = 0, j = 0; i < sizeof(key_raw); i++){
if(isdigit(key_raw[i])) {
digitToChar(&key_raw[i], key);
}
if(!(isalpha(key_raw[i])))
continue;
key[j++] = key_raw[i];
}
/* Length checking. */
if(strlen(key) < 1) {
printf("ERROR: Key too short.\n");
}
if(strlen(key) > MAX_SZ){
printf("ERROR: Key too long.\n");
}
} while((strlen(key) < 1) | (strlen(key) > MAX_SZ));
/* Encryption algorithm. */
/* The distance that the message character is from 'a'
is added to the letter of the key for that column.
1 is added because the key is not the first row of the column, just the header. */
printf("Your encrypted message is: ");
for (i = 0, j = 0; i < strlen(message); i++, j++) {
if (!key[j]) {
j = 0; // Reset key index when reaching the end of the key
}
int shift = key[j] - 'a'; // Shift amount from key character
// Encrypt the message using the Vigenère cipher logic
if (key[j] >= 'A' && key[j] <= 'Z') {
shift = key[j] - 'A'; // Shift amount from key character
}
int newChar = message[i] + shift + 1; // Apply shift
// Handle wrap-around for encryption, considering both uppercase and lowercase
if (isupper(message[i])) {
if (newChar > 'Z') {
// Wrap around to 'A' if the result is greater than 'Z'
newChar = 'A' + (newChar - 'Z' - 1);
} else if (newChar < 'A') {
// Wrap around to 'Z' if the result is less than 'A'
newChar = 'Z' - ('A' - newChar - 1);
}
} else if (islower(message[i])) {
// For lowercase letters
if (newChar < 'a') {
// Wrap around to 'z' if below 'a'
newChar = 'z' - ('a' - newChar - 1);
}
else if (newChar > 'z') {
// Wrap around to 'a' if above 'z'
newChar = 'a' + (newChar - 'z' - 1);
}
}
printf("%c", newChar);
}
printf("\n");
}
/* Decryption function. */
void decrypt(){
do{
/* Get Message and remove the spaces. */
printf("Please type your message: ");
fgets(message_raw, MAX_SZ, stdin);
for(i = 0, j = 0; i < strlen(message_raw); i++){
/* Checks for number-only inputs and prints a more specific error message */
if(isdigit(message_raw[i])){
choice[0] = 'y';
continue;
}
if(!(isalpha(message_raw[i]))) {
continue;
}
message[j++] = message_raw[i];
}
/* Length checking. */
if(strlen(message) < 1 & choice[0] == 'y') {
printf("ERROR: This is not an accepted input.\n"
"This program does not output numbers in an encrypted string.\n"
"Maybe you have typed your key here instead?\n");
}
else if(strlen(message) < 1) {
printf("ERROR: Message too short.\n");
}
else if(strlen(message) > MAX_SZ) {
printf("ERROR: Message too long.\n");
}
} while(strlen(message) < 1 | strlen(message) > MAX_SZ);
if(choice[0] == 'y') {
printf("There is a number in your input. This may not be a valid message.\n"
"The program will continue as normal, ignoring the numeric part of your input,\n"
"however this may cause your message to be decrypted incorrectly.\n");
}
do {
/* Get Key and remove the spaces. */
printf("Please type your key: ");
fgets(key_raw, MAX_SZ, stdin);
for(i = 0, j = 0; i < strlen(key_raw); i++){
if(isdigit(key_raw[i])) {
digitToChar(&key_raw[i], key);
}
if(!(isalpha(key_raw[i]))) {
continue;
}
key[j++] = key_raw[i];
}
/* Length checking. */
if(strlen(key) < 1)
printf("ERROR: Key too short.\n");
if(strlen(key) > MAX_SZ)
printf("ERROR: Key too long.\n");
} while((strlen(key) < 1) | (strlen(key) > MAX_SZ));
/* Decryption algorithm. */
/* The distance that the key is from 'a' is subtracted from the encrypted message, undoing the encryption.
1 is subtracted due to the key not being the first row of the Tabula Recta. */
printf("Your decrypted message is: ");
for(i = 0, j = 0; i < strlen(message); i++, j++) {
// Reset key index when reaching the end of the key
if(!key[j]){
j = 0;
}
// Decrypt the message using the Vigenère cipher logic
int shift = key[j] - 'a'; // Shift amount from key character
// Encrypt the message using the Vigenère cipher logic
if (key[j] >= 'A' && key[j] <= 'Z') {
shift = key[j] - 'A'; // Shift amount from key character
}
int newChar = message[i] - shift - 1; // Apply shift
// Handle wrap-around for decryption, considering both uppercase and lowercase
if (isupper(message[i])) {
if (newChar < 'A') {
// Wrap around to 'Z' if the result is less than 'A'
newChar = 'Z' - ('A' - newChar - 1);
} else if (newChar > 'Z') {
// Wrap around to 'A' if the result is greater than 'Z'
newChar = 'A' + (newChar - 'Z' - 1);
}
} else if (islower(message[i])) {
// For lowercase letters
if (newChar < 'a') {
// Wrap around to 'z' if below 'a'
newChar = 'z' - ('a' - newChar - 1);
}
else if (newChar > 'z') {
// Wrap around to 'a' if above 'z'
newChar = 'a' + (newChar - 'z' - 1);
}
}
printf("%c", newChar);
}
printf("\n");
}
/* Main function. Allows user to pick from options (E)ncrypt, (D)ecrypt, or Show (T)able. */
int main(){
do{
printf("Show (T)able, (E)ncrypt message, or (D)ecrypt message?: ");
fgets(choice, MAX_SZ, stdin);
}
/* This could probably be replaced/enhanced with the lower() function. */
while((*choice != 'T') & (*choice != 'E') & (*choice != 'D') & (*choice != 't') & (*choice != 'e') & (*choice != 'd'));
if((*choice == 'T') | (*choice == 't'))
table();
else if((*choice == 'E') | (*choice == 'e'))
encrypt();
else if((*choice == 'D') | (*choice == 'd'))
decrypt();
return 0;
}