Remove useless includes and comments.

This commit is contained in:
manzerbredes 2015-03-09 13:01:13 +04:00
parent 00ef6a8d29
commit 760fc16076
3 changed files with 12 additions and 20 deletions

View file

@ -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;

View file

@ -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>
/**

View file

@ -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;