#ifndef SECRET_H #define SECRET_H #include #include #include #include #include class Secret { public: Secret(); ~Secret(); QByteArray getEncodeString(const QString& str); QString getDecodeString(const QByteArray& code); private: char* secretkey; }; #endif // SECRET_H