mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
11 lines
188 B
C++
11 lines
188 B
C++
#ifndef PASSWORDHASHER_H
|
|
#define PASSWORDHASHER_H
|
|
|
|
#include <QObject>
|
|
|
|
class PasswordHasher {
|
|
public:
|
|
static QString computeHash(const QString &password, const QString &salt);
|
|
};
|
|
|
|
#endif
|