-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsuario.cpp
More file actions
77 lines (61 loc) · 1.36 KB
/
Usuario.cpp
File metadata and controls
77 lines (61 loc) · 1.36 KB
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
#include "Usuario.h"
using namespace std;
Usuario::Usuario() : tipoUsuario("base")
{}
void Usuario::setNombre(std::string name)
{
nombre = name;
}
void Usuario::setTipoUsuario(std::string type)
{
tipoUsuario = type;
}
void Usuario::setPassword(std::string pass)
{
string hashedP;
hashedP = hashPass(pass);
password = hashedP;
}
std::string Usuario::getName()
{
return nombre;
}
std::string Usuario::getTipoUsuario()
{
return tipoUsuario;
}
std::string Usuario::getPassword()
{
return password;
}
std::string Usuario::toString()
{
string myStr("Tipo de usuario:\t");
myStr += tipoUsuario;
myStr += "\tNombre:\t";
myStr += nombre;
return myStr;
}
std::string Usuario::hashPass(std::string plainPass)
{
//todo comprobar funcionamiento.
///hashing algorithm
// unsigned char digest[SHA256_DIGEST_LENGTH];
// char str[plainPass.length()];
// sprintf(str,plainPass.c_str()); /// comprobar conversion de strings a char array.
//
// SHA256((unsigned char*)&str, strlen(str), (unsigned char*)&digest);
//
// char mdString[SHA256_DIGEST_LENGTH*2+1];
//
// for (int i = 0; i < SHA256_DIGEST_LENGTH; i++) {
// sprintf(&mdString[i*2], "%02x", (unsigned int)digest[i]);
// }
//
// printf("SHA256 digest: %s\n", mdString);
//
// string result(mdString);
//
// return result;
return plainPass;
}