summaryrefslogtreecommitdiff
path: root/CryptClass/AbstractSKA.hpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-03-13 15:07:21 +0400
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-03-13 15:07:21 +0400
commit802410f7a3bdf2db3823f96e122bf1db45bf6a85 (patch)
treeb761182cd6a6cf47e75b168614b414fd1b5e089e /CryptClass/AbstractSKA.hpp
parent34b47f8e08eff519f6c8372f2e4ce5b24267614c (diff)
parentc113e7b5f46a3434f017de3f2c9f83a002b246f1 (diff)
Merge branch 'PARSER'
Diffstat (limited to 'CryptClass/AbstractSKA.hpp')
-rw-r--r--CryptClass/AbstractSKA.hpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/CryptClass/AbstractSKA.hpp b/CryptClass/AbstractSKA.hpp
index ca7230b..7622ab4 100644
--- a/CryptClass/AbstractSKA.hpp
+++ b/CryptClass/AbstractSKA.hpp
@@ -7,29 +7,27 @@
* Specify which method the algorithm must be implement.
*
*/
+
#ifndef __AbstractSKA__
#define __AbstractSKA__
+
+//----- std -----
#include <string>
+
/**
* @class AbstractSKA AbstractSKA.hpp "/CryptClass/AbstractSKA.hpp"
* @brief Class for Symmetric-Key Algorithm (SKA)
* @author manzerbredes
*
- * This class should not be instanciate directly.
+ * This class should not be instantiate directly.
*
*/
-
class AbstractSKA {
public:
- AbstractSKA(){
- }
- ~AbstractSKA(){
- }
-
/**
* @brief Encrypt data.
*
@@ -42,6 +40,7 @@ class AbstractSKA {
*/
virtual std::string encrypt(std::string key, std::string data) = 0;
+
/**
* @brief Decrypt data.
*