Add AbstractSKA.hpp
This commit is contained in:
parent
c7dd5225b8
commit
4921e17d62
1 changed files with 29 additions and 0 deletions
29
CryptClass/AbstractSKA.hpp
Normal file
29
CryptClass/AbstractSKA.hpp
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
/**
|
||||||
|
* @file AbstractSKA.hpp
|
||||||
|
* @brief Class for Symmetric-Key Algorithm (SKA)
|
||||||
|
* @author manzerbredes
|
||||||
|
* @date 8 Mars 2015
|
||||||
|
*
|
||||||
|
* Specify which method the algorithm must be implement.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @class AbstractSKA AbstractSKA.hpp "/CryptClass/AbstractSKA.hpp"
|
||||||
|
* @brief Class for Symmetric-Key Algorithm (SKA)
|
||||||
|
* @author manzerbredes
|
||||||
|
*
|
||||||
|
* This should not be instanciate directly.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
class AbstractSKA {
|
||||||
|
|
||||||
|
public:
|
||||||
|
AbstractSKA();
|
||||||
|
~AbstractSKA();
|
||||||
|
|
||||||
|
virtual void encrypt();
|
||||||
|
virtual void decrypt();
|
||||||
|
};
|
Loading…
Add table
Reference in a new issue