Cockatrice/servatrice/src/passwordhasher.h

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