diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-09 13:01:13 +0400 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-09 13:01:13 +0400 |
| commit | 760fc160762852896865ca4cbc12cf8153c9c4cc (patch) | |
| tree | 5bb44cf27ac780790762487a91686c4056c7fec9 /main.cpp | |
| parent | 00ef6a8d293b8b0811dee4a83a8ab689e1c00eab (diff) | |
Remove useless includes and comments.
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -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; |
