public static uint FNV(this string input)
{
string lower = input.ToLowerInvariant();
uint rez = 0x811C9DC5;
for (int i = 0; i < lower.Length; i++)
{
rez *= 0x1000193;
rez ^= (char)(lower);
}
return rez;
}
Heya, I've been working on RE'ing the headers and data structures as well. Your snippet above explains why I've been doing /headdesk for the past three days (_ _)...
Even the uncompressed strings were like a hard brick wall to me ~.~ Anyways, thanks for the code! Lemme know if you need someone to troll your todo's
Cheers,
Fuz