Création du projet !
This commit is contained in:
commit
1c6f11fdd8
5 changed files with 120 additions and 0 deletions
33
main.cpp
Normal file
33
main.cpp
Normal file
|
@ -0,0 +1,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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue