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

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

15
DataBaseLMS/hashtools.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef HASHTOOLS_H
#define HASHTOOLS_H
#include <QString>
#include "DataBaseLMS_global.h"
class DATABASELMS_EXPORT HashTools
{
public:
HashTools();
public:
static QString hashingMD5string(QString str);
};
#endif // HASHTOOLS_H