Can I use the Knuth Hash to generate a unique hash number for a byte[]
?
The normal Knuth Hash algorithm looks like this:
int KnuthHsh(int v)
{
v *= 2654435761;
return v >> 32;
}
Is there also a way to input a byte[]
and generate a unique Hash value for it?