aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/Hasher.h
blob: 325a95b871ed3ce28bf88b1fa7759ad67fe65d0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
using namespace std;

class Hasher
{
private:
	wstring salt;

public:
	Hasher(wstring &salt);
	wstring getHash(wstring &name);
};