Credentials_manager/PasswordManager/cryptographer.h
Daniil f21b270cef Cryptographer class created
database table added
2021-12-08 20:31:35 +03:00

18 lines
253 B
C++

#ifndef CRYPTOGRAPHER_H
#define CRYPTOGRAPHER_H
#include <QString>
class Cryptographer
{
public:
Cryptographer();
QString encrypt(QString message);
QString decrypt(QString message);
private:
QString key;
};
#endif // CRYPTOGRAPHER_H