The Wayback Machine - https://web.archive.org/web/20201122230648/https://github.com/bipthelin/murmerl3
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 

README.md

murmerl3

Pure erlang implementation of the MurmurHash3 algorithm.

MurmurHash3 is a hash-function that's suitable for non cryptographic situations. Such as hash-based lookups.

Currently only the 32-bit version is implemented

Usage

murmerl3:hash_32(Data) hash Data with an initial seed of 0.

murmerl3:hash_32(Data, Seed) hash Data with the given seed.

1> murmerl3:hash_32("The quick brown fox jumps over the lazy dog").
776992547

2> murmerl3:hash_32("The quick brown fox jumps over the lazy dog", 666).
3231564089

About

Pure erlang implementation of the MurmurHash3 algorithm

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.