-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
42 lines (30 loc) · 1.33 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
#include <iostream>
#include <string>
#include "Base64.h"
int main() {
std::string s;
while (true) {
system("clear");
std::cout << "\033[4mChoose operation:\033[0m 1)Encode 2)Decode." << std::endl << std::endl << "[\033[93mBase64\033[0m] > ";
getline(std::cin, s);
// Encrypting.
if (s == "1") {
system("clear");
std::cout << "\033[4mEnter a message.\033[0m" << std::endl << std::endl << "[\033[93mBase64\033[0m] > ";
getline(std::cin, s);
std::cout << std::endl;
std::cout << "[\033[93mBase64\033[0m] \033[4mEncrypted message:\033[0m" << std::endl << std::endl << *Red::Base64Encode(&s);
std::cout << std::endl << std::endl << std::endl << "Press Enter to continue.";
std::cin.get();
// Decrypting.
} else if (s == "2") {
system("clear");
std::cout << "\033[4mEnter a message.\033[0m" << std::endl << std::endl << "[\033[93mBase64\033[0m] > ";
getline(std::cin, s);
std::cout << std::endl;
std::cout << "[\033[93mBase64\033[0m] Decrypted message:" << std::endl << std::endl << *Red::Base64Decode(&s);
std::cout << std::endl << std::endl << std::endl << "Press Enter to continue.";
std::cin.get();
}
}
}