Knuth Hash for byte[]

591 Views Asked by At

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?

1

There are 1 best solutions below

1
On
    public static ulong CalculateHash(byte[] bytes)
    {
        var hashedValue = 3074457345618258791UL;
        foreach (var b in bytes)
        {
            hashedValue += b;
            hashedValue *= 3074457345618258799UL;
        }
        return hashedValue;
    }