You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
settings/src/password.h

16 lines
251 B
C++

#ifndef PASSWORD_H
#define PASSWORD_H
#include <QObject>
class Password : public QObject
{
Q_OBJECT
public:
Password(QObject *parent = nullptr);
Q_INVOKABLE QString cryptPassword(const QString &password) const;
};
#endif // PASSWORD_H