mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-06 05:23:36 +00:00
12 lines
142 B
C++
12 lines
142 B
C++
#pragma once
|
|
|
|
|
|
class Hasher
|
|
{
|
|
private:
|
|
std::wstring salt;
|
|
|
|
public:
|
|
Hasher(std::wstring &salt);
|
|
std::wstring getHash(std::wstring &name);
|
|
}; |