#ifndef AESENCRYPTHELPER_H #define AESENCRYPTHELPER_H #include class AESEncryptHelper { public: AESEncryptHelper() = delete; static std::string encrypt(const std::string& aPlainText); static std::string decrypt(const std::string& aCipherText); }; #endif /* ALAESENCRYPTHELPER_H */