mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
16 lines
239 B
C++
16 lines
239 B
C++
#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
|