Files
GabsPuNs-Project_Zenith_Main/Minecraft.World/Hasher.cpp
GabsPuNs bc6c09146a New File System and Cleanup some code Part 3
* Remove stdafx.h and some <unordered_set> includes
* Update Minecraft Server Defines and remove more unused folders/files
* Unbloat stdafx.h from Minecraft.World
2026-05-24 22:21:41 -04:00

27 lines
602 B
C++

#include <xhash>
#include "Hasher.h"
Hasher::Hasher(wstring &salt)
{
this->salt = salt;
}
wstring Hasher::getHash(wstring &name)
{
// 4J Stu - Removed try/catch
//try {
wstring s = wstring( salt ).append( name );
//MessageDigest m;
//m = MessageDigest.getInstance("MD5");
//m.update(s.getBytes(), 0, s.length());
//return new BigInteger(1, m.digest()).toString(16);
// TODO 4J Stu - Will this hash us with the same distribution as the MD5?
return std::to_wstring(std::hash<wstring>{}( s ) );
//}
//catch (NoSuchAlgorithmException e)
//{
// throw new RuntimeException(e);
//}
}