Add parameters to method encrypt and decrypt.

This commit is contained in:
Loic GUEGAN 2015-03-08 14:32:12 +04:00
parent 26ed8d2c91
commit 4bcfddc79e

View file

@ -22,28 +22,32 @@
class AbstractSKA {
public:
AbstractSKA();
~AbstractSKA();
AbstractSKA(){
}
~AbstractSKA(){
}
/**
* @brief Encrypt data.
*
* @param key : key used to encrypt data
* @param data : contain data to encrypt.
*
* This method must be overwritten.
* **Warning** data will be modified.
*
*/
virtual void encrypt(char* data) = 0;
virtual void encrypt(std::string key, char* data) = 0;
/**
* @brief Decrypt data.
*
* @param key : key used to decrypt data
* @param data : contain data to decrypt.
*
* This method must be overwritten.
* **Warning** data will be modified.
*
*/
virtual void decrypt(char* data) = 0;
virtual void decrypt(std::string key, char* data) = 0;
};