summaryrefslogtreecommitdiff
path: root/Untracked/Doxygen/CryptClass/AbstractSKA.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Untracked/Doxygen/CryptClass/AbstractSKA.hpp')
-rw-r--r--Untracked/Doxygen/CryptClass/AbstractSKA.hpp54
1 files changed, 0 insertions, 54 deletions
diff --git a/Untracked/Doxygen/CryptClass/AbstractSKA.hpp b/Untracked/Doxygen/CryptClass/AbstractSKA.hpp
deleted file mode 100644
index de03b1b..0000000
--- a/Untracked/Doxygen/CryptClass/AbstractSKA.hpp
+++ /dev/null
@@ -1,54 +0,0 @@
-/**
- * @file AbstractSKA.hpp
- * @brief Class for Symmetric-Key Algorithm (SKA)
- * @author manzerbredes
- * @date 8 Mars 2015
- *
- * Specify which method the algorithm must be implement.
- *
- */
-
-#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.
- *
- */
-
-class AbstractSKA {
-
- public:
- AbstractSKA(){
- }
- ~AbstractSKA(){
- }
-
- /**
- * @brief Encrypt data.
- *
- * @param key : key used to encrypt data
- * @param data : contain data to encrypt.
- *
- * This method must be overwritten.
- * **Warning** data will be modified.
- *
- */
- virtual std::string encrypt(std::string key, std::string data) = 0;
-
- /**
- * @brief Decrypt data.
- *
- * @param key : key used to decrypt data
- * @param data : contain data to decrypt.
- *
- * This method must be overwritten.
- * **Warning** data will be modified.
- *
- */
- virtual std::string decrypt(std::string key, std::string data) = 0;
-};