From 1c6f11fdd85f2842eab5376c25a0acce535437f8 Mon Sep 17 00:00:00 2001 From: Loic GUEGAN Date: Fri, 6 Mar 2015 11:06:27 +0400 Subject: Création du projet ! MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 main.cpp (limited to 'main.cpp') 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 +#include + +//----- 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; +} -- cgit v1.2.3