forgetIt/main.cpp
2015-03-07 10:59:05 +04:00

33 lines
427 B
C++

//----- 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 de test");
aff(hash.getMD5_128());
return 0;
}
//---- Functions -----
void aff(std::string chaine){
std::cout << chaine;
}