-
Notifications
You must be signed in to change notification settings - Fork 0
/
conventional cryptography.cpp
883 lines (749 loc) · 16 KB
/
conventional cryptography.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
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
//program to implement conventional cryptographic technique
#include<iostream>
#include<math.h>
#include<map>
#include<string>
#include<string.h>
using namespace std;
//class from which specific cipher classes will inherit
class master
{ protected:
string plaintxt,ctxt;
int choice;
map <char,int> alpha;
char letters[26];
public:
//function to create the map of alphabets and their postions
master()
{
char ch='a';
for(int i=0;i<26;i++,ch++)
{
letters[i]=ch;
alpha[ch]=i;
}
}
void removeSpace(string str)
{
string strr;
for(int i=0;i<str.length();i++)
{
if(str.at(i)=='\x20')
continue;
else
strr.push_back(str.at(i));
}
if(choice==1)
plaintxt=strr;
else if(choice==2)
ctxt=strr;
}
//convert upper case to lower case
void convert(string &str)
{
for (int i=0;i<str.length();i++)
{
if(str.at(i)>=65&&str.at(i)<=90)
str.at(i)+=32;
else
continue;
}
}
};
//class to implement shift cipher
class shift:public master
{
int key,len;
public:
shift(int _op)
{
choice=_op;
if(choice==1)
{
cout<<"ENTER PLAINTEXT";
cin.ignore();
getline(cin,plaintxt);
removeSpace(plaintxt);
convert(plaintxt);
}
else
{
cout<<"ENTER CIPHER TEXT";
cin.ignore();
getline(cin,ctxt);
removeSpace(ctxt);
convert(ctxt);
}
cout<<"ENTER KEY";
cin>>key;
if(choice==1)
encrypt();
else
decrypt();
}
void encrypt()
{
char p,q,c;
for(int i=0;i<plaintxt.length();i++)
{
//taking one alphabet at a time
c=plaintxt.at(i);
int w=(alpha[c]+key)%26; //getting the integer from map emplyoing required mechanism
q=letters[w]; //converting back to alphabets
ctxt.push_back(q);
}
cout<<ctxt;
}
void decrypt()
{
char c;
//reverse of encryption
for(int i=0;i<ctxt.length();i++)
{c=ctxt.at(i);
int w=(alpha[c]-key)%26;
if(w<0)
w=w+26;
plaintxt.push_back(letters[w]);
}
cout<<plaintxt;
}
};
class vigener:public master
{
string key,ckey;
int klen;
public:
vigener(int _op)
{
choice=_op;
if(choice==1)
{
cout<<"ENTER PLAINTEXT";
cin.ignore();
getline(cin,plaintxt);
removeSpace(plaintxt);
convert(plaintxt);
}
else if (choice==2)
{
cout<<"ENTER CHIPER TEXT";
cin.ignore();
getline(cin,ctxt);
removeSpace(ctxt);
convert(ctxt);
}
cout<<"ENTER KEY";
cin>>key;
keydtr(key);
if(choice==1)
encrypt();
else if (choice==2)
decrypt();
}
//convetrs key to corresponding integers
void keydtr(string str)
{
char p;
int n;
klen=str.length();
for(int i=0;i<klen;i++)
{
p=str.at(i);
n=alpha[p];
ckey.push_back(n);
}
}
//Encryption function
void encrypt()
{ int j=0,i;
for( i=0;i<plaintxt.length();i++)
{
char p=plaintxt.at(i);
int k=((alpha[p]+ckey[j])%26);
ctxt.push_back(letters[k]);
if(j<ckey.length()-1)
j++;
else
j=0;
}
cout<<ctxt;
}
//decryption function
void decrypt()
{
int j=0,i;
for( i=0;i<ctxt.length();i++)
{
char p=ctxt.at(i);
int k=((alpha[p]-ckey[j])%26);
if(k<0)
k=k+26;
plaintxt.push_back(letters[k]);
if(j<ckey.length()-1)
j++;
else
j=0;
}
cout<<plaintxt;
}
};
//railfence
class railfence:public master
{
string str,d,e;
int k;
public:
railfence()
{
cout<<"enter string";
cin.ignore();
getline(cin,str);
removeSpace(str);
convert(str);
cout<<"key";
cin>>k;
}
string encryptRailFence(string text, int key)
{
// create the matrix to cipher plain text
// key = rows , length(text) = columns
char rail[key][(text.length())];
// filling the rail matrix to distinguish filled
// spaces from blank ones
for (int i=0; i < key; i++)
for (int j = 0; j < text.length(); j++)
rail[i][j] = '\n';
// to find the direction
bool dir_down = false;
int row = 0, col = 0;
for (int i=0; i < text.length(); i++)
{
// check the direction of flow
// reverse the direction if we've just
// filled the top or bottom rail
if (row == 0 || row == key-1)
dir_down = !dir_down;
// fill the corresponding alphabet
rail[row][col++] = text[i];
// find the next row using direction flag
dir_down?row++ : row--;
}
//now we can construct the cipher using the rail matrix
string result;
for (int i=0; i < key; i++)
for (int j=0; j < text.length(); j++)
if (rail[i][j]!='\n')
result.push_back(rail[i][j]);
return result;
}
// This function receives cipher-text and key
// and returns the original text after decryption
string decryptRailFence(string cipher, int key)
{
// create the matrix to cipher plain text
// key = rows , length(text) = columns
char rail[key][cipher.length()];
// filling the rail matrix to distinguish filled
// spaces from blank ones
for (int i=0; i < key; i++)
for (int j=0; j < cipher.length(); j++)
rail[i][j] = '\n';
// to find the direction
bool dir_down;
int row = 0, col = 0;
// mark the places with '*'
for (int i=0; i < cipher.length(); i++)
{
// check the direction of flow
if (row == 0)
dir_down = true;
if (row == key-1)
dir_down = false;
// place the marker
rail[row][col++] = '*';
// find the next row using direction flag
dir_down?row++ : row--;
}
// now we can construct the fill the rail matrix
int index = 0;
for (int i=0; i<key; i++)
for (int j=0; j<cipher.length(); j++)
if (rail[i][j] == '*' && index<cipher.length())
rail[i][j] = cipher[index++];
// now read the matrix in zig-zag manner to construct
// the resultant text
string result;
row = 0, col = 0;
for (int i=0; i< cipher.length(); i++)
{
// check the direction of flow
if (row == 0)
dir_down = true;
if (row == key-1)
dir_down = false;
// place the marker
if (rail[row][col] != '*')
result.push_back(rail[row][col++]);
// find the next row using direction flag
dir_down?row++: row--;
}
return result;
}
//function to call the encrypt and decrypt functions and display them
void display(int x)
{
if(x==1)
{
e=encryptRailFence(str,k);
cout<<e;
}
else if(x==2)
{
d=decryptRailFence(str,k);
cout<<d;
}
else
cout<<"WRONG ENTRY";
}
};
//affine cipher
class affine:public master
{
int k,e;
public:
affine(int _op)
{ choice=_op;
if(choice==1)
{
cout<<"ENTER PLAINTEXT";
cin.ignore();
getline(cin,plaintxt);
removeSpace(plaintxt);
convert(plaintxt);
}
else
{
cout<<"ENTER CIPHERTEXT";
cin.ignore();
getline(cin,ctxt);
removeSpace(ctxt);
convert(ctxt);
}
label:
cout<<"ENTER KEY";
cin>>k>>e;
int y=gcd(k,26);
while(y!=1)
{
goto label;
cout<<"ENTER PROPER KEY THE GCD OF THE FIRST NUMBER AND 26 SHOULD BE ONE";
}
if(choice==1)
encrypt();
else if(choice ==2)
decrypt();
else
cout<<"wrong entry" ;
}
void decrypt()
{
int inverse, x ;
inverse=modInverse(k, 26); //to get inverse modulo
for( int i=0;i<ctxt.length();i++ )
{
x=((inverse*(alpha[ctxt.at(i)]-e))%26);
plaintxt.push_back(letters[x]);
}
cout<<plaintxt;
}
// Returns modulo inverse of a with respect to m using
// extended Euclid Algorithm
// Assumption: a and m are coprimes, i.e., gcd(a, m) = 1
int modInverse(int a, int m)
{
int m0 = m, t, q;
int x0 = 0, x1 = 1;
if (m == 1)
return 0;
while (a > 1)
{
// q is quotient
q = a / m;
t = m;
// m is remainder now, process same as
// Euclid's algo
m = a % m, a = t;
t = x0;
x0 = x1 - q * x0;
x1 = t;
}
// Make x1 positive
if (x1 < 0)
x1 += m0;
return x1;
}
int gcd(int n1, int n2)
{
if (n2 != 0)
return gcd(n2, n1 % n2);
else
return n1;
}
void encrypt()
{
int w;
for(int i=0;i<plaintxt.length();i++)
{
w=((alpha[plaintxt.at(i)]*k+e)%26);
ctxt.push_back(letters[w]);
}
cout<<ctxt;
}
};
class playfair
{
string _txt; char _m[5][5];
public:
playfair( string k, string t, bool ij, bool e )
{
createMatrix( k, ij );
getTextReady( t, ij, e );
if( e ) encrypt( 1 );
else encrypt( -1 );
display();
}
void encrypt( int dir )
{
int a, b, c, d; string ntxt;
for( string::const_iterator ti = _txt.begin(); ti != _txt.end(); ti++ )
{
if( getCharPos( *ti++, a, b ) )
if( getCharPos( *ti, c, d ) )
{
if( a == c ) { ntxt += getChar( a, b + dir ); ntxt += getChar( c, d + dir ); }
else if( b == d ){ ntxt += getChar( a + dir, b ); ntxt += getChar( c + dir, d ); }
else { ntxt += getChar( c, b ); ntxt += getChar( a, d ); }
}
}
_txt = ntxt;
}
void display()
{
cout << "\n\n OUTPUT:\n=========" << endl;
string::iterator si = _txt.begin(); int cnt = 0;
while( si != _txt.end() )
{
cout << *si; si++; cout << *si << " "; si++;
if( ++cnt >= 26 ) cout << endl, cnt = 0;
}
cout << endl << endl;
}
char getChar( int a, int b )
{
return _m[ (b + 5) % 5 ][ (a + 5) % 5 ];
}
bool getCharPos( char l, int &a, int &b )
{
for( int y = 0; y < 5; y++ )
for( int x = 0; x < 5; x++ )
if( _m[y][x] == l )
{ a = x; b = y; return true; }
return false;
}
void getTextReady( string t, bool ij, bool e )
{
for( string::iterator si = t.begin(); si != t.end(); si++ )
{
*si = toupper( *si ); if( *si < 65 || *si > 90 ) continue;
if( *si == 'J' && ij ) *si = 'I';
else if( *si == 'Q' && !ij ) continue;
_txt += *si;
}
if( e )
{
string ntxt = ""; size_t len = _txt.length();
for( size_t x = 0; x < len; x += 2 )
{
ntxt += _txt[x];
if( x + 1 < len )
{
if( _txt[x] == _txt[x + 1] ) ntxt += 'X';
ntxt += _txt[x + 1];
}
}
_txt = ntxt;
}
if( _txt.length() & 1 ) _txt += 'X';
}
void createMatrix( string k, bool ij )
{
if( k.length() < 1 ) k = "KEYWORD";
k += "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string nk = "";
for( string::iterator si = k.begin(); si != k.end(); si++ )
{
*si = toupper( *si ); if( *si < 65 || *si > 90 ) continue;
if( ( *si == 'J' && ij ) || ( *si == 'Q' && !ij ) )continue;
if( nk.find( *si ) == -1 ) nk += *si;
}
copy( nk.begin(), nk.end(), &_m[0][0] );
}
};
#include<iostream>
#include<math.h>
#include<map>
#include<string>
#include<string.h>
using namespace std;
class hill:public master
{
string key;
float q;
int choice,No;
map<char,int> hil;
char letters[26];
public:
hill(int _op)
{
choice =_op;
char ch='a';
if(choice==1)
{
cout<<"ENTER PLAIN TEXT";
cin.ignore();
getline(cin,plaintxt);
removeSpace(plaintxt);
convert(plaintxt);
}
else if(choice==2)
{
cout<<"ENTER CIPHER TEXT";
cin.ignore();
getline(cin,ctxt);
removeSpace(ctxt);
convert(ctxt);
}
cout<<"ENTER KEY";
cin>>key;
for(int i=0;i<26;i++,ch++)
{
letters[i]=ch;
hil[ch]=i;
}
keyencrypt();
}
void keyencrypt()
{
char c='x';
int k=key.length();
while (k>0) //to make the key a square no
{
q=sqrt(k);
if(q-(int)q!=0)
{
k++;
key.push_back(c);
}
else
{
break;
}
}
while(true)
{
if(plaintxt.length()%(int)q==0)
break;
else
plaintxt.push_back(c);
}
}
void encrypt()
{ int m=0;
No=(int)q;
char c;
int karry[(int)q][(int)q];//array for key
int parry[(int)q][1];
for(int i=0;i<q;i++)
for(int j=0;j<q;j++)
{
c=key.at(m);
karry[i][j]=hil[c];
}
char txt[(int)q][1];
for(int cnt=0;cnt<plaintxt.length();cnt++)
{
for(int i=0;i<q;i++)
for(int j=0;j<1;j++)
{
parry[i][j]=hil[plaintxt.at(m)];
if(q==m)
{
for(int i=0;i<q;i++)
for(int j=0;j<1;j++)
for(int k = 0; k < q; ++k)
{
txt[i][j] += karry[i][k] * parry[k][j];
ctxt.push_back(letters[((txt[i][j])%26)]);
}
m++;
}
else if(m>plaintxt.length())
break;
else
m++;
}
}
}
/* void decrypt()
{int m=0,adj[No][No];
char c;
int karry[(int)q][(int)q];//array for key
for(int i=0;i<q;i++)
for(int j=0;j<q;j++)
{
c=key.at(m);
karry[i][j]=hil[c];
}
adjoint(No,karry);
}
void adjoint(int N,int *ptr)
{
if (N == 1)
{
adj[0][0] = 1;
return;
}
// temp is used to store cofactors of A[][]
int sign = 1, temp[N][N];
for (int i=0; i<N; i++)
{
for (int j=0; j<N; j++)
{
// Get cofactor of A[i][j]
getCofactor(A, temp, i, j, N);
// sign of adj[j][i] positive if sum of row
// and column indexes is even.
sign = ((i+j)%2==0)? 1: -1;
// Interchanging rows and columns to get the
// transpose of the cofactor matrix
adj[j][i] = (sign)*(determinant(temp, N-1));
}
}
}*/
void display()
{
cout<<ctxt;
}
};
//substitution cipher
class substitution:public master
{
int key,len;
map <char,int> subs;
char letters[26];
public:
substitution(int choice)
{
char ch='a',chr='z';
for(int i=0;i<26;i++,ch++,chr--)
{
letters[i]=chr;
subs[ch]=i;
}
if(choice==1)
{
cout<<"ENTER PLAINTEXT";
cin.ignore();
getline(cin,plaintxt);
removeSpace(plaintxt);
convert(plaintxt);
encrypt();
}
else if(choice==2)
{
cout<<"ENTER CIPHER TEXT";
cin.ignore();
getline(cin,plaintxt);
removeSpace(plaintxt);
convert(plaintxt);
decrypt();
}
}
void encrypt()
{
char c;
int j;
for(int i=0;i<plaintxt.length();i++)
{
c=plaintxt.at(i);
j=subs[c];
ctxt.push_back(letters[j]);
}
cout<<ctxt;
}
void decrypt()
{
char c;
int j;
for(int i=0;i<ctxt.length();i++)
{
c=ctxt.at(i);
j=subs[c];
plaintxt.push_back(letters[j]);
}
cout<<plaintxt;
}
};
int encryptionsystem()
{ int n;
cout<<"1.SHIFT CIPHER"<<endl<<"2.VIGENERE CIPHER"<<endl<<"3.RAILFENCE CIPHER"<<endl<<"4.AFFINE CIPHER"<<endl;
cout<<"5.PLAYFAIR CIPHER"<<endl<<"6.HILL CIPHER"<<endl<<"7.SUBSTITUTION CIPHER"<<endl;
cin>>n;
return n;
}
int main()
{
int option,k;
char ans;
do{
k=encryptionsystem();
cout<<"1.ENCRYPT"<<endl<<"2.DECRYPT"<<endl;
cin>>option;
if(k==1)
shift ob1(option);
else if(k==2)
vigener ob1(option);
else if(k==3)
{
railfence ob1;
ob1.display(option);
}
else if(k==4)
affine ob1(option);
else if(k==5)
{
string key, i, txt; bool ij, e;
if(option==1)
i='e' ;
e = ( i[0] == 'e' || i[0] == 'E' );
cout << "Enter a en/decryption key: ";
cin.ignore();
getline( cin, key );
cout << "I <-> J (Y/N): ";
getline( cin, i );
ij = ( i[0] == 'y' || i[0] == 'Y' );
cout << "Enter the text: ";
getline( cin, txt );
playfair pf( key, txt, ij, e );
return system( "pause" );
}
else if(k==6)
{
hill ob1(option);
}
else if(k==7)
substitution ob1(option);
cout<<endl<<"Do you want to continue(Y/N)";
cin>>ans;
}while(ans=='y'||ans=='Y');
return 0;
}