An open API service indexing awesome lists of open source software.

https://github.com/robinheghan/murmur3

Elm implementation of murmur3 hash function
https://github.com/robinheghan/murmur3

Last synced: 8 months ago
JSON representation

Elm implementation of murmur3 hash function

Awesome Lists containing this project

README

          

# Murmur 3

This is an elm implementation of the murmur 3 hash function.
Murmur 3 is well suited for hashing strings quickly, and with a low chance of collisions.
It is not, however, suitable for cryptographic use (like hashing a password).

To use, simply import the namespace:

import Murmur3

Then hash a string

Murmur3.hashString 1234 "test"