15 lines
305 B
C++
15 lines
305 B
C++
#ifndef AESENCRYPTHELPER_H
|
|
#define AESENCRYPTHELPER_H
|
|
|
|
#include <string>
|
|
class AESEncryptHelper
|
|
{
|
|
public:
|
|
AESEncryptHelper() = delete;
|
|
|
|
static std::string encrypt(const std::string& aPlainText);
|
|
static std::string decrypt(const std::string& aCipherText);
|
|
};
|
|
|
|
#endif /* ALAESENCRYPTHELPER_H */
|