forked from epicleet/tps2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvota.cpp
75 lines (59 loc) · 1.47 KB
/
vota.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
#include <stdint.h>
#include <iostream>
#include <vector>
int hkdf(const uint8_t *in, uint8_t *out);
struct Voto {
uint8_t cargo;
int tipo;
std::string voto;
Voto(uint8_t cargo,
int tipo,
std::string &voto)
{
this->cargo = cargo;
this->tipo = tipo;
this->voto = voto;
}
};
struct Cedula {
std::vector<Voto> vetor;
void AdicionaVoto(Voto voto) {
vetor.push_back(voto);
}
};
struct InfoEleitor {
struct Cedula *cedula;
InfoEleitor() {
cedula = new Cedula;
}
void AdicionaVoto(uint8_t cargo,
int tipo,
std::string &voto)
{
cedula->AdicionaVoto(Voto(cargo, tipo, voto));
LogaVoto(cargo, tipo);
}
void LogaVoto(uint8_t cargo,
int tipo)
{
std::cerr << "Registrado voto para cargo " << int(cargo)
<< " do tipo " << int(tipo) << std::endl;
}
};
int main() {
InfoEleitor info;
uint8_t hdkf_in[32], hkdf_out[32];
hkdf(hdkf_in, hkdf_out);
std::string voto;
// votos de teste
voto = "00"; info.AdicionaVoto(0, 0, voto);
voto = "10"; info.AdicionaVoto(0, 0, voto);
voto = "20"; info.AdicionaVoto(0, 0, voto);
std::cout << std::endl
<< "Votos registrados:"
<< std::endl;
for (auto voto : info.cedula->vetor) {
std::cout << " - voto para '" << voto.voto << "'" << std::endl;
}
return 0;
}