diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-12 21:04:49 +0400 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-12 21:04:49 +0400 |
| commit | 00ed5faf673fa24e9525a894a7af34657ea066d8 (patch) | |
| tree | 9ad5d021c552109b897c639fd0438272bafb65c4 | |
| parent | 80f1e1ce67332a82f03e092b6b2396b0834efad9 (diff) | |
Check comments, and code.
| -rw-r--r-- | CryptClass/AbstractSKA.hpp | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/CryptClass/AbstractSKA.hpp b/CryptClass/AbstractSKA.hpp index ca7230b..5a23c36 100644 --- a/CryptClass/AbstractSKA.hpp +++ b/CryptClass/AbstractSKA.hpp @@ -7,28 +7,33 @@ * 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(){ - } + //Constructor + AbstractSKA(); + + //Destructor + ~AbstractSKA(); + /** * @brief Encrypt data. @@ -42,6 +47,7 @@ class AbstractSKA { */ virtual std::string encrypt(std::string key, std::string data) = 0; + /** * @brief Decrypt data. * |
