-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAtBash.cpp
90 lines (77 loc) · 2.11 KB
/
AtBash.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
#include <iostream>
using namespace std;
void cipherEncryption(){
string message;
cout << "Enter Message: ";
getline(cin, message);
cin.ignore();
//message to upper case
for(int i = 0; i < message.length(); i++){
message[i] = toupper(message[i]);
}
string alpa = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
string reverseAlpa = "";
for(int i = alpa.length()-1; i > -1; i--){
reverseAlpa += alpa[i];
}
string encryText = "";
for(int i = 0; i < message.length(); i++){
if(message[i] == 32){
encryText += " ";
} else {
for(int j = 0; j < alpa.length(); j++){
if(message[i] == alpa[j]){
encryText += reverseAlpa[j];
break;
}
} // inner for
} // if-else
} // for
cout << "Encrypted Text: " << encryText;
}
void cipherDecryption(){
string message;
cout << "Enter Encrypted Message: ";
getline(cin, message);
cin.ignore();
//message to upper case
for(int i = 0; i < message.length(); i++){
message[i] = toupper(message[i]);
}
string alpa = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
string reverseAlpa = "";
for(int i = alpa.length()-1; i > -1; i--){
reverseAlpa += alpa[i];
}
string dencryText = "";
for(int i = 0; i < message.length(); i++){
if(message[i] == 32){
dencryText += " ";
} else {
for(int j = 0; j < reverseAlpa.length(); j++){
if(message[i] == reverseAlpa[j]){
dencryText += alpa[j];
break;
}
} // inner for
} // if-else
} // for
cout << "Decrypted Text: " << dencryText;
}
int main()
{
int choice;
cout << "1. Encryption\n2. Decryption\nChoose(1,2): ";
cin >> choice;
cin.ignore();
if(choice == 1){
cout << "Encryption" << endl;
cipherEncryption();
} else if (choice == 2){
cout << "Decryption" << endl;
cipherDecryption();
} else {
cout << "Wrong Choice" << endl;
}
return 0;
}