mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-31 11:45:58 +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);
|
|
}; |