From 241518f369efce64046be36a15fcb722b00e9477 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Fri, 7 Oct 2016 20:33:18 +0200 Subject: Working AES encrypt and decrypt! --- main.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'main.cpp') diff --git a/main.cpp b/main.cpp index f818c48..2cd31ec 100644 --- a/main.cpp +++ b/main.cpp @@ -6,6 +6,7 @@ #include #include #include +#include "aes.h" #include "base64.h" #include "bigint.h" #include "numalgo.h" @@ -211,12 +212,16 @@ int main(int argc,char **argv){ fwrite(data,1,4,stdout); }*/ - string s; + /*string s; while(true){ char c=cin.get(); if(!cin)break; s.push_back(c); } cout<