Check comments, and code.

This commit is contained in:
manzerbredes 2015-03-12 21:04:49 +04:00
parent 80f1e1ce67
commit 00ed5faf67

View file

@ -7,28 +7,33 @@
* Specify which method the algorithm must be implement. * Specify which method the algorithm must be implement.
* *
*/ */
#ifndef __AbstractSKA__ #ifndef __AbstractSKA__
#define __AbstractSKA__ #define __AbstractSKA__
//----- std -----
#include <string> #include <string>
/** /**
* @class AbstractSKA AbstractSKA.hpp "/CryptClass/AbstractSKA.hpp" * @class AbstractSKA AbstractSKA.hpp "/CryptClass/AbstractSKA.hpp"
* @brief Class for Symmetric-Key Algorithm (SKA) * @brief Class for Symmetric-Key Algorithm (SKA)
* @author manzerbredes * @author manzerbredes
* *
* This class should not be instanciate directly. * This class should not be instantiate directly.
* *
*/ */
class AbstractSKA { class AbstractSKA {
public: public:
AbstractSKA(){ //Constructor
} AbstractSKA();
~AbstractSKA(){
} //Destructor
~AbstractSKA();
/** /**
* @brief Encrypt data. * @brief Encrypt data.
@ -42,6 +47,7 @@ class AbstractSKA {
*/ */
virtual std::string encrypt(std::string key, std::string data) = 0; virtual std::string encrypt(std::string key, std::string data) = 0;
/** /**
* @brief Decrypt data. * @brief Decrypt data.
* *