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

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