Home

Awesome

nim-murmur

Build Status

A pure-nim implementation of MurmurHash. Has MurmurHash3 and MurmurHash2, and does not wrap a C implementation.

Adapted from https://github.com/aappleby/smhasher

Using

This is in the nimble package manager as murmurhash, so you can put

requires murmurhash>=0.4.0

in your nimble file. Or, to pin to a particuar commit, do

requires "https://github.com/cwpearson/nim-murmurhash#b44ed52"

then,

import murmurhash

About

Only two functions implemented currently.

Related: