-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
96 lines (86 loc) · 2.42 KB
/
main.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
#include <iostream>
#include <string>
#include <map>
using namespace std;
string gen_keystream(string key, string msg) {
string keystream;
int non_alphabetic = 0;
for(int i = 0; i < msg.size(); i++) {
if((int)msg[i] >= (int)'A' && (int)msg[i] <= (int)'Z')
keystream.push_back(key[(i-non_alphabetic) % key.size()]);
else
non_alphabetic++;
}
cout << "KEYSTREAM: ";
cout << keystream << endl;
return keystream;
}
string insert_key() {
string key;
cout << "Insert the key: ";
cin >> key;
return key;
}
string insert_message() {
string message;
cout << "Insert the message: ";
cin.ignore();
getline(cin, message);
return message;
}
string get_decrypt() {
string key = insert_key();
string encrypted = insert_message();
string keystream = gen_keystream(key, encrypted);
string decrypted;
int non_alphabetic = 0;
for(int i = 0; i < encrypted.size(); i++) {
if((int)encrypted[i] >= (int)'A' && (int)encrypted[i] <= (int)'Z') {
char c_new = (char)(((int) ((encrypted[i] - 'A')-(keystream[i-non_alphabetic] - 'A')+26)) % 26 + 'A');
decrypted.push_back(c_new);
}else {
decrypted.push_back(encrypted[i]);
non_alphabetic++;
}
}
cout << decrypted << endl;
return key;
}
string get_encrypt() {
string key = insert_key();
string original = insert_message();
string keystream = gen_keystream(key, original);
string encrypted;
int non_alphabetic = 0;
for(int i = 0; i < original.size(); i++) {
if((int)original[i] >= (int)'A' && (int)original[i] <= (int)'Z') {
char c_new = (char)(((int) ((original[i] - 'A')+(keystream[i-non_alphabetic] - 'A'))) % 26 + 'A' );
encrypted.push_back(c_new);
}else {
encrypted.push_back(original[i]);
non_alphabetic++;
}
}
cout << encrypted << endl;
return key;
}
int main() {
int opt = 0;
printf("Vigenere Chyper\n1. Encryptor\n2. Decryptor\n");
do {
printf("Choose an option: ");
cin >> opt;
switch(opt){
case 1:
get_encrypt();
break;
case 2:
get_decrypt();
break;
default:
printf("Invalid option!\n");
break;
}
} while(opt < 1 || opt > 2);
return 0;
}