MurmurHash3

Computes the 32-bit MurmurHash3 of the given data.

Synopsis

Declared in <hash.h>

unsigned int
MurmurHash3(
    unsigned int nHashSeed,
    std::span<unsigned char const> vDataToHash);

Return Value

The 32-bit MurmurHash3 value.

Parameters

NameDescription
nHashSeedThe seed value for the hash.
vDataToHashThe data to hash.