Remove useless includes and comments.
This commit is contained in:
parent
00ef6a8d29
commit
760fc16076
3 changed files with 12 additions and 20 deletions
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
Add a link
Reference in a new issue