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.
*
*/
#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.
*