mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-26 11:13:36 +00:00
10 lines
150 B
C++
10 lines
150 B
C++
#pragma once
|
|
|
|
class Hasher {
|
|
private:
|
|
std::wstring salt;
|
|
|
|
public:
|
|
Hasher(std::wstring& salt);
|
|
std::wstring getHash(std::wstring& name);
|
|
}; |