diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-09 12:51:23 +0400 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-09 12:51:23 +0400 |
| commit | 7d2c4734224eb7f6cf699bc84f505c06c4394b35 (patch) | |
| tree | 070330590915595ec740acfeea5a92c742f427fb /CryptClass/AbstractSKA.hpp | |
| parent | 1574c191c3a6909e2b932fb32d6c63dc89e264b1 (diff) | |
AES first release. Add method to HASHCrypt class.
Diffstat (limited to 'CryptClass/AbstractSKA.hpp')
| -rw-r--r-- | CryptClass/AbstractSKA.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CryptClass/AbstractSKA.hpp b/CryptClass/AbstractSKA.hpp index 57a4a23..de03b1b 100644 --- a/CryptClass/AbstractSKA.hpp +++ b/CryptClass/AbstractSKA.hpp @@ -38,7 +38,7 @@ class AbstractSKA { * **Warning** data will be modified. * */ - virtual void encrypt(std::string key, char* data) = 0; + virtual std::string encrypt(std::string key, std::string data) = 0; /** * @brief Decrypt data. @@ -50,5 +50,5 @@ class AbstractSKA { * **Warning** data will be modified. * */ - virtual void decrypt(std::string key, char* data) = 0; + virtual std::string decrypt(std::string key, std::string data) = 0; }; |
