mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-15 09:00:39 -08:00
15 lines
296 B
C++
15 lines
296 B
C++
#ifndef PASSWORDHASHER_H
|
|
#define PASSWORDHASHER_H
|
|
|
|
#include <QObject>
|
|
|
|
class PasswordHasher
|
|
{
|
|
public:
|
|
static QString computeHash(const QString &password, const QString &salt);
|
|
static QString generateRandomSalt(const int len = 16);
|
|
static QString generateActivationToken();
|
|
};
|
|
|
|
#endif
|