Blame


1 4545b700 2021-10-15 thomas //-----------------------------------------------------------------------------
2 4545b700 2021-10-15 thomas // MurmurHash2 was written by Austin Appleby, and is placed in the public
3 4545b700 2021-10-15 thomas // domain. The author hereby disclaims copyright to this source code.
4 4545b700 2021-10-15 thomas
5 4545b700 2021-10-15 thomas /* Obtained from https://github.com/aappleby/smhasher */
6 4545b700 2021-10-15 thomas
7 f1b55c5c 2022-07-16 thomas uint32_t murmurhash2(const unsigned char *key, int len, uint32_t seed);