-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathB5_Cipher.cpp
313 lines (285 loc) · 6.78 KB
/
B5_Cipher.cpp
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
#include <iostream>
using namespace std;
string saesar()
{
string result;
string text;
int s;
cout << "Enter Your Plain Text :";
cin >> text;
cout << "Enter Shift Time :";
cin >> s;
// traverse text
for (int i=0;i<text.length();i++)
{
// apply transformation to each character
// Encrypt Uppercase letters
if (isupper(text[i]))
{
result = (result) + char(int(text[i]+s-65)%26 +65);
}
// Encrypt Lowercase letters
else
{
result = (result) + char(int(text[i]+s-97)%26 +97);
}
}
// Return the resulting string
cout<< "____________________________________________"<<endl;
cout<< " "<<endl;
cout << "Cipher Text = " << result <<endl;
}
//DECRYPT SAESAR *******************************************************<<
string decrypt_saesar()
{
string result;
string text;
int s;
cout << "Enter Your Cipher Text :";
cin >> text;
cout << "Enter Shift Time :";
cin >> s;
for (int i=0;i<text.length();i++)
{
if (isupper(text[i]))
{
result = (result) + char(int((text[i]-s-65)+26)%26 +65);
}
else
{
result = (result) + char(int((text[i]-s-97)+26)%26 +97);
}
}
// Return the resulting string
cout<< "____________________________________________"<<endl;
cout<< " "<<endl;
cout << "Plain Text = " << result <<endl;
}
string vigenere()
{
string plantext;
string key;
string result;
int k=0;
cout << "Enter Your Text :";
cin >> plantext;
cout <<"Enter Your Key (STRING PLEAS !!) :";
cin >> key;
while (plantext.length() > key.length())
{
key += key;
}
for(int i=0;i<plantext.length();i++)
{
if(isupper(plantext[i]))
{
result[i] = (((plantext[i]-65)+(key[k]-65))%26)+65;
k++;
}
else
{
result[i] = (((plantext[i]-97)+(key[k]-97))%26)+97;
k++;
}
}
cout << " "<<endl;
cout << "RESULT :"<<endl;
for(int i=0;i<plantext.length();i++)
{
cout << result[i];
}
cout << " "<<endl;
}
string decrypt_vigenere()
{
string plantext;
string key;
string result;
int k=0;
cout << "Enter Your Vigenere :";
cin >> plantext;
cout <<"Enter Your Key (STRING PLEAS !!) :";
cin >> key;
while (plantext.length() > key.length())
{
key += key;
}
for(int i=0;i<plantext.length();i++)
{
if(isupper(plantext[i]))
{
result[i] = ((((plantext[i]-65)+26)-(key[k]-65))%26)+65;
k++;
}
//ZCUVZSQ
else
{
result[i] = ((((plantext[i]-97)+26)-(key[k]-97))%26)+97;
k++;
}
}
cout << " "<<endl;
cout << "RESULT :"<<endl;
for(int i=0;i<plantext.length();i++)
{
cout << result[i];
}
cout << " "<<endl;
cout << "Decrypted :)"<<endl;
}
string rsakeygen()
{
int fi;
int p;
int q;
int n;
int e;
cout << "Enter P Value :"<<endl;
cin >> p;
cout << "Enter Q Value :"<<endl;
cin >> q;
cout<< "Enter E Value :";
cin >> e;
cout <<" "<<endl;
n=(p-1)*(q-1);
cout<< "n = "<<n<<endl;
cout <<" "<<endl;
for (int d=1;d<=800;d++)
{
fi=(d*e)%n;
if (fi==1)
{
//cout<<fi<<endl;
cout<<"d Will = "<<d<<endl;
break;
}
else {
continue;
}
}
}
string Vernam_Cipher()
{
string vplantext;
string vkey;
string vresult;
int vk=0;
cout << "Enter Your Text Without Spaces:";
cin >> vplantext;
cout <<"Enter Your Key (STRING PLEAS !!) :";
cin >> vkey;
while (vplantext.length() > vkey.length())
{
vkey += vkey;
}
for(int vi=0;vi<vplantext.length();vi++)
{
if(isupper(vplantext[vi]))
{
vresult[vi] = ((((vplantext[vi]-65)+26)-(vkey[vk]-65))%26)+65;
vk++;
}
//ZCUVZSQ
else
{
vresult[vi] = ((((vplantext[vi]-97)+26)-(vkey[vk]-97))%26)+97;
vk++;
}
}
cout << " "<<endl;
cout << "RESULT :"<<endl;
for(int vi=0;vi<vplantext.length();vi++)
{
cout << vresult[vi];
}
cout << " "<<endl;
return 0;
}
// Driver program to test the above function
int main()
{
int Choose;
string Schoose;
int eord;
cout << "Choose Encrypt Type : "<<endl;
cout << "1-Caesar_Cipher"<<endl;
cout << "2-Vigenère_Cipher"<<endl;
cout << "3-RSA"<<endl;
cout << "4-Vernam_Cipher "<<endl;
cout << "5-Atbash_Cipher SOON "<<endl;
cin >> Choose;
if(Choose == 1)
{
cout << " "<<endl;
cout << "1-To Encrypt"<<endl;
cout << "2-To Decrypt"<<endl;
cin >> eord;
if (eord==1)
{
saesar();
}
else if (eord==2)
{
decrypt_saesar();
}
else
{
cout << "Invalid Input !!"<<endl;
//eord = NULL;
main();
}
}
else if (Choose==2)
{
cout << " "<<endl;
cout << "1-To Encrypt"<<endl;
cout << "2-To Decrypt"<<endl;
cin >> eord;
if(eord==1)
{
vigenere();
}
else if (eord==2)
{
decrypt_vigenere();
}
else
{
cout << " "<<endl;
cout << "Invalid Input !!"<<endl;
cout << "____________________________"<<endl;
//eord = NULL;
main();
}
}
else if (Choose==3)
{
cout<<"1-Key Generation"<<endl;
cout<<"2-Encrypt SOON"<<endl;
cout<<"3-Decrypt SOON"<<endl;
cin>>eord;
if(eord==1)
{
rsakeygen();
}
else
{
cout << " "<<endl;
cout << "No Valid Input !!"<<endl;
cout << "____________________________"<<endl;
main();
}
}
else if (Choose==4)
{
Vernam_Cipher();
}
else
{
cout << " "<<endl;
cout << "No Valid Input !!"<<endl;
cout << "____________________________"<<endl;
main();
}
return 0;
}