summaryrefslogtreecommitdiff
path: root/CryptClass
diff options
context:
space:
mode:
authorLoic GUEGAN <loic@debian>2015-03-08 13:09:01 +0400
committerLoic GUEGAN <loic@debian>2015-03-08 13:09:01 +0400
commit4921e17d62d325c5a31e2a608b7cc2428e34627b (patch)
treee7d0c2bbe43fff1cb14e07b8cc8831ff955cbc1a /CryptClass
parentc7dd5225b80960d3b47e76f16d4e9a06657e4b86 (diff)
Add AbstractSKA.hpp
Diffstat (limited to 'CryptClass')
-rw-r--r--CryptClass/AbstractSKA.hpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/CryptClass/AbstractSKA.hpp b/CryptClass/AbstractSKA.hpp
new file mode 100644
index 0000000..b632149
--- /dev/null
+++ b/CryptClass/AbstractSKA.hpp
@@ -0,0 +1,29 @@
+/**
+ * @file AbstractSKA.hpp
+ * @brief Class for Symmetric-Key Algorithm (SKA)
+ * @author manzerbredes
+ * @date 8 Mars 2015
+ *
+ * Specify which method the algorithm must be implement.
+ *
+ */
+
+
+/**
+ * @class AbstractSKA AbstractSKA.hpp "/CryptClass/AbstractSKA.hpp"
+ * @brief Class for Symmetric-Key Algorithm (SKA)
+ * @author manzerbredes
+ *
+ * This should not be instanciate directly.
+ *
+ */
+
+class AbstractSKA {
+
+ public:
+ AbstractSKA();
+ ~AbstractSKA();
+
+ virtual void encrypt();
+ virtual void decrypt();
+};