-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubstitution.c
120 lines (98 loc) · 3.07 KB
/
substitution.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
#include <cs50.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
string encipher(char key[], string plaintext);
int main(int argc, string argv[])
{
// Check: only one CLA should be provided.
if (argc != 2)
{
printf("Usage: ./substitution key\n");
return 1;
}
// Init error message to reuse later.
string error = "Key must contain 26 non-repeated alphabetical character.\n";
// Init variable `slen` to iterate through CLA[1] later.
int slen = strlen(argv[1]);
//First check: Check length = 26
if (slen != 26)
{
printf("%s", error);
return 1;
}
// Prepare for 2nd and 3rd check.
// First, lowercase everything in CLA[1]. Store this in variable `key`.
char key[slen];
for (int i = 0, n = slen; i < n; i++)
{
key[i] = tolower(argv[1][i]);
}
// 2nd check: Check if `key` consists of only aphabetical letters.
for (int i = 0, n = slen; i < n; i ++)
{
if ((key[i] < 97) || (key[i] > 122))
{
printf("%s", error);
return 1;
}
// 3rd check: Check if any char repeats within `key`.
for (int j = i + 1; j < n; j++)
{
if (key[i] == key[j])
{
printf("%s", error);
return 1;
}
}
}
// Ask for plaintext input.
string plaintext = get_string("plaintext: ");
if (encipher(key, plaintext) == 0)
{
return 0;
}
}
string encipher(char key[], string plaintext)
{
// Init variables:
// `n` to iterate encryption key later.
// `n2` to iterate plain text string later.
// `ciphertext` to store cipher text after encryption.
int n = strlen(key);
int n2 = strlen(plaintext);
char ciphertext[n2];
// Iterate through characters within encryption key and assign to variable `x`.
// First character of key corresponds to ASCII 97 | 'a' and so on..
for (int i = 0, j = 97; i < n; i++, j++)
{
char x = key[i];
for (int z = 0; z < n2; z++)
{
// Iterate through characters within plaintext string and assign to variable `y`.
int y = plaintext[z];
if (y == j)
// Handle lowercase.
// If y == current ASCII position => match current key iteration.
{
ciphertext[z] = x;
}
else if (y == j - 32)
// Handle uppercase.
// If y == current ASCII position minus 32 (uppercase) => match current key iteration minus 32.
{
char u = x - 32;
ciphertext[z] = u;
}
else if (y < 65 || (y > 90 && y < 97) || y > 122)
// If y not in 65-90 or 97-122 range => match current plaintext iteration
{
ciphertext[z] = plaintext[z];
}
}
}
// Set result because `ciphertext` cannot be returned due to stack allocation error.
string result = ciphertext;
printf("ciphertext: %s\n", result);
return 0;
}