Хэширование пароля

This commit is contained in:
2025-10-16 17:11:58 +03:00
parent 8e931f229b
commit 241382d305
19 changed files with 221 additions and 116 deletions

View File

@@ -25,6 +25,11 @@ public:
QString getTypeUserDB(){return TypeUserDB;}
bool getNeedSetPassword(){return this->needSetPassword;}
void setNeedSetPassword(bool needSetPassword){this->needSetPassword = needSetPassword;}
void hashingPassword();
private:
QString login;
QString password;
@@ -34,6 +39,7 @@ protected:
QString TypeUserDB;
bool isAdmin;
bool needSetPassword;
};
#endif // USER_H