summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-03-09 13:01:13 +0400
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-03-09 13:01:13 +0400
commit760fc160762852896865ca4cbc12cf8153c9c4cc (patch)
tree5bb44cf27ac780790762487a91686c4056c7fec9 /main.cpp
parent00ef6a8d293b8b0811dee4a83a8ab689e1c00eab (diff)
Remove useless includes and comments.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp12
1 files changed, 11 insertions, 1 deletions
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;