Add the MurmurHash2, 64bit version

Hash algorithm by Austin Appleby, <http://murmurhash.googlepages.com>
This commit is contained in:
Julien BLACHE
2010-01-04 17:58:28 +01:00
parent e16d8a9747
commit 8ef57bbb41
2 changed files with 140 additions and 0 deletions

View File

@@ -16,4 +16,7 @@ djb_hash(void *data, size_t len);
char *
b64_decode(const char *b64);
uint64_t
murmur_hash64(const void *key, int len, uint32_t seed);
#endif /* !__MISC_H__ */