summaryrefslogtreecommitdiffstats
path: root/src/crypt/cryptaes.h
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-06-10 12:52:06 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-06-10 12:52:06 +0200
commitf6586ae894673b561455de5044d2ff31f6a0ef94 (patch)
tree854df037b2f8b5c034bdb0b794c2e19ee47f9fe7 /src/crypt/cryptaes.h
parent74bdec2ff94eec373eb358c00437d55fe44c9238 (diff)
downloadIT-Sicherheit-master.tar.gz
IT-Sicherheit-master.zip
Add IV to CryptAes and create hash in CryptEngineHEADmaster
Diffstat (limited to 'src/crypt/cryptaes.h')
-rw-r--r--src/crypt/cryptaes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/crypt/cryptaes.h b/src/crypt/cryptaes.h
index 58ddba1..e0de1b1 100644
--- a/src/crypt/cryptaes.h
+++ b/src/crypt/cryptaes.h
@@ -2,6 +2,7 @@
#define CRYPTAES_H
#include "cryptclassevp.h"
+#include "cryptengine.h"
#include <QDebug>
@@ -16,6 +17,9 @@ public:
virtual void encrypt();
virtual void decrypt();
+
+private:
+ static const int IVLENGTH = 8;
};
#endif // CRYPTAES_H