-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathROT13.cpp
85 lines (69 loc) · 1.86 KB
/
ROT13.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
#include <iostream>
using namespace std;
void cipherEncryption(){
cout << "Message can only be alphabetic" << endl;
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]);
}
int key = 13;
string encrypText = "";
for(int i = 0; i < message.length(); i++){
int temp = message[i] + key;
if(message[i] == 32){
encrypText += " ";
} else if(temp > 90){
temp -= 26;
encrypText += (char)temp;
} else {
encrypText += (char)temp;
} //if-else
} //for
cout << "Encrypted Text: " << encrypText;
}
void cipherDecryption(){
cout << "Message can only be alphabetic" << endl;
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]);
}
int key = 13;
string decrypText = "";
for(int i = 0; i < message.length(); i++){
int temp = message[i] - key;
if(message[i] == 32){
decrypText += " ";
} else if(temp < 65){
temp += 26;
decrypText += (char)temp;
} else {
decrypText += (char)temp;
} //if-else
} //for
cout << "Decrypted Text: " << decrypText;
}
int main()
{
int choice;
cout << "1. Encryption\n2. Decryption\nChoose(1,2): ";
cin >> choice;
cin.ignore();
if(choice == 1){
cout << endl << "---Encryption---" << endl;
cipherEncryption();
} else if(choice == 2){
cout << endl << "---Decryption---" << endl;
cipherDecryption();
} else {
cout << endl << "Wrong Choice" << endl;
}
return 0;
}