blob: 846f03b3668942e3a4f01755488b66d07afa6699 (
plain)
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
|
//----- Includes std -----
#include <iostream>
#include <string>
//----- Includes personnal Class -----
#include "CryptClass/HASHCrypt.hpp"
//----- Prototype -----
void aff(std::string chaine);
//----- Program Start -----
int main(){
HASHCrypt hash= HASHCrypt("Chaine");
aff(hash.getMD5_32());
return 0;
}
//---- Functions -----
void aff(std::string chaine){
std::cout << chaine;
}
|