mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-01 01:34:09 -05:00
12 lines
188 B
C++
12 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
|