summaryrefslogtreecommitdiffstats
path: root/src/crypt/cryptaes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypt/cryptaes.h')
-rw-r--r--src/crypt/cryptaes.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/crypt/cryptaes.h b/src/crypt/cryptaes.h
new file mode 100644
index 0000000..58ddba1
--- /dev/null
+++ b/src/crypt/cryptaes.h
@@ -0,0 +1,21 @@
+#ifndef CRYPTAES_H
+#define CRYPTAES_H
+
+#include "cryptclassevp.h"
+
+#include <QDebug>
+
+class CryptAes : public CryptClassEvp
+{
+public:
+ CryptAes();
+
+ // CryptClassEvp interface
+public:
+ virtual const EVP_CIPHER *algorithm();
+
+ virtual void encrypt();
+ virtual void decrypt();
+};
+
+#endif // CRYPTAES_H