diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-11 10:18:34 +0400 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-11 10:18:34 +0400 |
| commit | 075a3f6f4450967671d10b6d9e9388eb0d23b935 (patch) | |
| tree | e74ac921874b9f15cdbdce60f568b5965d83eab5 /main.cpp | |
| parent | 3b86f1c9108f7567905850080513391001e8eed1 (diff) | |
Clear branchstable
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/main.cpp b/main.cpp deleted file mode 100644 index 45f62de..0000000 --- a/main.cpp +++ /dev/null @@ -1,66 +0,0 @@ -/** - * @file main.cpp - * @brief Entry point - * @author manzerbredes - * @version Prototype - * @date 8 Mars 2015 - * - * Entry point of the application. - * - */ - - - -//----- std ----- - -#include <iostream> -#include <string> - -//----- class ----- -#include "CryptClass/HASHCrypt.hpp" - - -//----- Prototype ----- -void aff(std::string chaine); - - - - -/** - * @fn int main(int argc, char *argv[]) - * @author manzerbredes - * @brief main function - * @param argc contain *argv[] length - * @param *argv[] contain the arguments list - * @return Return code, an int. - */ -int main(int argc, char *argv[]){ - - - - - - - HASHCrypt hash= HASHCrypt(); - - byte code[16]; - - hash.getMD5_128("Phrase de test !", code, sizeof(code)); - - for(int i=0; i<16;i++){ - std::cout << code[i]; - } - - - return 0; - -} - - - - -//---- Functions ----- - -void aff(std::string chaine){ - std::cout << chaine; -} |
