Remove useless includes and comments.
This commit is contained in:
parent
00ef6a8d29
commit
760fc16076
3 changed files with 12 additions and 20 deletions
|
@ -9,7 +9,7 @@
|
|||
*/
|
||||
|
||||
#include "AESCrypt.hpp"
|
||||
#include <iomanip>
|
||||
|
||||
//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;
|
||||
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
#include <crypto++/md5.h> //For MD5
|
||||
#include <crypto++/hex.h> //For Hex convertion
|
||||
#include <crypto++/sha.h> //For SHA
|
||||
#include <crypto++/modes.h>
|
||||
|
||||
|
||||
/**
|
||||
|
|
12
main.cpp
12
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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue