diff options
| author | Loic GUEGAN <loic@debian> | 2015-03-06 11:06:27 +0400 |
|---|---|---|
| committer | Loic GUEGAN <loic@debian> | 2015-03-06 11:06:27 +0400 |
| commit | 1c6f11fdd85f2842eab5376c25a0acce535437f8 (patch) | |
| tree | a0dc5c749e5a198a037413a76075d9e98977c99a /main.cpp | |
Création du projet !
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; +} |
