Clone this repo:
  1. 2ffa9ce [murmurhash] Re-enable ubsan for murmurhash. by Simon Shields · 3 years, 5 months ago main master
  2. a66b491 [UBsan][murmurhash] Temporarily disable UBSan by Leonard Chan · 4 years, 2 months ago
  3. bb3a13c Update README.fuchsia by Petr Hosek · 6 years ago
  4. f65c8cd Update README.fuchsia by Damien Miller · 6 years ago
  5. 752ec1c Add BUILD.gn file. by Benjamin Lerman · 7 years ago

murmurhash

MurmurHash3 general hash bashed lookup function implementation

about

MurmurHash is a non-cryptographic hash function suitable for general hash-based lookup. This implementation implements version 3 of MurmurHash.

install

clib:

$ clib install jwerle/murmurhash.c

source:

$ git clone git@github.com:jwerle/murmurhash.c.git
$ cd murmurhash.c
$ make
$ make install

example

#include <stdlib.h>
#include <string.h>
#include <murmurhash.h>

int
main (void) {
  uint32_t seed = 0;
  const char *key = "kinkajou";
  uint32_t hash = murmurhash(key, (uint32_t) strlen(key), seed); // 0xb6d99cf8
  return 0;
}

A command line executable is also available:

$ echo -n kinkajou | murmur
3067714808
$ echo -n panda | murmur --seed=10
1406483717

api

uint32_t
murmurhash (const char *key, uint32_t len, uint32_t seed);

Returns a murmur hash of key based on seed using the MurmurHash3 algorithm.

license

MIT