-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
86 lines (73 loc) · 1.91 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
/**
* @file main.cpp
* @author Gustavo Simões e Izabelle Custodia Teixeira Sebastião
* @brief
* @version 1.0
* @date 2021-12-06
*
* @copyright Copyright (c) 2021
*
*/
#include <iostream>
#include <sstream>
#include <fstream>
#include "utils.hpp"
#include "encrypt.hpp"
#include "decrypt.hpp"
using namespace std;
int main()
{
// Carregamento da chave de criptografia ("senha"/"password")
string key;
ifstream keyfilereader("./secrets/key.txt");
// Verificando se a chave de criptografia existe
if (!keyfilereader.is_open())
{
cout << "Error, chave de criptografia não encontrada !" << endl;
return 1;
}
char keych;
stringstream keysst;
while (keyfilereader.get(keych))
{
keysst << keych;
}
key = keysst.str();
keyfilereader.close();
// Inciando menu de opções
int option;
while (1)
{
cout << "\n*******************************\n"
<< "Escolha uma das opções abaixo: \n"
<< "*******************************\n\n";
cout << " 1 - Criptografar arquivo." << endl;
cout << " 2 - Descriptografar arquivo." << endl;
cout << " 3 - Alterar a senha do programa." << endl;
cout << " 4 - Sair." << endl;
cin >> option;
switch (option)
{
case 1:
// Criptografar arquivo.
// encrypt.hpp
encrypt(key);
break;
case 2:
// Descriptografar arquivo.
// decrypt.hpp
decrypt(key);
break;
case 3:
// Alterar a senha do programa.
// utils.hpp
changePassword();
case 4:
return 0;
default:
cout << "Escolha uma opção entre 1, 2 e 3.";
break;
}
}
return 0;
}