Update AbstractSKA.hpp
This commit is contained in:
parent
4921e17d62
commit
26ed8d2c91
1 changed files with 23 additions and 3 deletions
|
@ -9,12 +9,13 @@
|
|||
*/
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @class AbstractSKA AbstractSKA.hpp "/CryptClass/AbstractSKA.hpp"
|
||||
* @brief Class for Symmetric-Key Algorithm (SKA)
|
||||
* @author manzerbredes
|
||||
*
|
||||
* This should not be instanciate directly.
|
||||
* This class should not be instanciate directly.
|
||||
*
|
||||
*/
|
||||
|
||||
|
@ -24,6 +25,25 @@ class AbstractSKA {
|
|||
AbstractSKA();
|
||||
~AbstractSKA();
|
||||
|
||||
virtual void encrypt();
|
||||
virtual void decrypt();
|
||||
/**
|
||||
* @brief Encrypt data.
|
||||
*
|
||||
* @param data : contain data to encrypt.
|
||||
*
|
||||
* This method must be overwritten.
|
||||
* **Warning** data will be modified.
|
||||
*
|
||||
*/
|
||||
virtual void encrypt(char* data) = 0;
|
||||
|
||||
/**
|
||||
* @brief Decrypt data.
|
||||
*
|
||||
* @param data : contain data to decrypt.
|
||||
*
|
||||
* This method must be overwritten.
|
||||
* **Warning** data will be modified.
|
||||
*
|
||||
*/
|
||||
virtual void decrypt(char* data) = 0;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue