diff --git a/CryptClass/AESCrypt.cpp b/CryptClass/AESCrypt.cpp index 78a553e..08f00f2 100644 --- a/CryptClass/AESCrypt.cpp +++ b/CryptClass/AESCrypt.cpp @@ -9,7 +9,7 @@ */ #include "AESCrypt.hpp" -#include + //Constructor AESCrypt::AESCrypt(){ this->hash=HASHCrypt(); //Init hash attribute @@ -27,23 +27,6 @@ std::string AESCrypt::encrypt(std::string key, std::string data){ byte digest[32]; hash.getSHA_256(key, digest, (int)sizeof(digest)); - - - - //Add padding for AES - /*char pad=0x01; - int tmpL=data.length(); - while(tmpL % 128 != 0){ - tmpL++; - pad+=1; - - } - std::cout << "pad:"<< std::hex << pad; - while(data.length() % 128 != 0){ - data+=pad; - } - - std::cout << data.length();*/ //Contain data encrypted std::string cipher; diff --git a/CryptClass/HASHCrypt.hpp b/CryptClass/HASHCrypt.hpp index b4b02fd..b377fac 100644 --- a/CryptClass/HASHCrypt.hpp +++ b/CryptClass/HASHCrypt.hpp @@ -21,7 +21,6 @@ #include //For MD5 #include //For Hex convertion #include //For SHA -#include /** diff --git a/main.cpp b/main.cpp index b65d5ba..7a218d0 100644 --- a/main.cpp +++ b/main.cpp @@ -33,8 +33,18 @@ */ int main(int argc, char *argv[]){ + std::string chaine="It's work !"; + + AESCrypt aes; + + chaine=aes.encrypt("loic", chaine); + + std::cout << chaine << std::endl; + + chaine=aes.decrypt("loic", chaine); + + std::cout << chaine << std::endl; - std::cout << "It's work !" << std::endl; return 0;