-
Notifications
You must be signed in to change notification settings - Fork 0
/
shift_cipher.c
144 lines (120 loc) · 3.16 KB
/
shift_cipher.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
// This Encryption and Decryption code made by Rahul who is interested in security.
// Actually I had an idea to get your info secure that no one has to understand what the heck is!
// The encryption and decryption methods are using shift cipher concept.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#define character 26
int encryption();
int decryption();
char arr[character] = {"abcdefghijklmnopqrstuvwxyz"};
char convert[1000];
int key;
int calculation;
int main()
{
int choice;
while (1)
{
printf("\n1.Encryption\n2.Decryption\n3.Exit\nPlease select:");
scanf("%d", &choice);
printf("\n\n");
switch (choice)
{
case 1:
{
encryption();
break;
}
case 2:
{
decryption();
break;
}
case 3:
{
exit(0);
break;
}
default:
{
printf("Please enter correct input.\n");
break;
}
}
}
return 0;
}
// Here is the encryption process.
int encryption()
{
char plaintext[1000];
int length = -1;
int n = 0;
printf("Enter the Plaintext you wanted to encrypt:");
fgets(plaintext, sizeof(plaintext), stdin);
// fgets(plaintext, sizeof(plaintext), stdin); // If the input didn't work then use this fgets too
printf("\nEnter the key[Integer value]:");
scanf("%d", &key);
// String length
while (plaintext[n] != '\0')
{
n++;
length++;
convert[length] = tolower(plaintext[length]); // Any uppercase letter convert to lowercase letter
}
printf("\nYour encrypted ciphertext is: ");
// Converting plaintext to ciphertext
for (int i = 0; i < length; i++)
{
for (int j = 0; j < character; j++)
{
if (arr[j] == convert[i])
{
calculation = (j + key) % character;
printf("%c", arr[calculation]);
}
}
}
printf("\n\n");
}
int decryption()
{
char ciphertext[1000];
int length = -1;
int n = 0;
printf("Enter the Ciphertext you wanted to decrypt:");
fgets(ciphertext, sizeof(ciphertext), stdin);
// fgets(ciphertext, sizeof(ciphertext), stdin); // If the input didn't work then use this fgets too
printf("\nEnter the key[Integer value]:");
scanf("%d", &key);
// String length
while (ciphertext[n] != '\0')
{
n++;
length++;
convert[length] = tolower(ciphertext[length]); // Any uppercase letter convert to lowercase letter
}
// Converting ciphertext to plaintext
printf("\nYour decrypted plaintext is: ");
for (int i = 0; i < length; i++)
{
for (int j = 0; j < character; j++)
{
if (arr[j] == convert[i])
{
if (key > j)
{
calculation = (j - key) + character;
}
else
{
calculation = (j - key) % character;
}
printf("%c", arr[calculation]);
}
}
}
printf("\n\n");
}