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
| #include <stdio.h>
#include <cs50.h>
#include <string.h>
#include <ctype.h>
int main(int argc, string argv[])
{
if (argc != 2)
{
printf("Usage: ./substitution KEY\n");
return 1;
}
char key[26][2] = {{'a', '0'}, {'b', '0'}, {'c', '0'}, {'d', '0'}, {'e', '0'}, {'f', '0'}, {'g', '0'}, {'h', '0'}, {'i', '0'}, {'j', '0'}, {'k', '0'}, {'l', '0'}, {'m', '0'}, {'n', '0'}, {'o', '0'}, {'p', '0'}, {'q', '0'}, {'r', '0'}, {'s', '0'}, {'t', '0'}, {'u', '0'}, {'v', '0'}, {'w', '0'}, {'x', '0'}, {'y', '0'}, {'z', '0'}
};
if (strlen(argv[1]) != 26)
{
printf("KEY must contain 26 characters.\n");
return 1;
}
for (int i = 0; i < 26; i++)
{
if (isalpha(argv[1][i]) == 0)
{
printf("Key must only contain alphabetic characters.\n");
return 1;
}
for (int j = 0; j < 26; j++)
{
if (key[j][1] == tolower(argv[1][i]))
{
printf("Key must not contain repeated characters.\n");
return 1;
}
}
key[i][1] = tolower(argv[1][i]);
}
string s = get_string("plaintext: ");
for (int i = 0; i < strlen(s); i++)
{
if (isupper(s[i]))
{
for (int j = 0; j < 26; j++)
{
if (toupper(key[j][0]) == s[i])
{
s[i] = toupper(key[j][1]);
break;
}
}
}
if (islower(s[i]))
{
for (int j = 0; j < 26; j++)
{
if ((key[j][0]) == s[i])
{
s[i] = (key[j][1]);
break;
}
}
}
}
printf("ciphertext: %s\n", s);
return 0;
}
|