diff options
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..846f03b --- /dev/null +++ b/main.cpp @@ -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; +} |
