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
- Host: GitHub
- URL: https://github.com/robinheghan/murmur3
- Owner: robinheghan
- License: mit
- Created: 2016-05-20T23:29:39.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T20:52:37.000Z (almost 6 years ago)
- Last Synced: 2024-10-30T01:38:14.326Z (over 1 year ago)
- Language: Elm
- Homepage: http://package.elm-lang.org/packages/robinheghan/murmur3/latest
- Size: 54.7 KB
- Stars: 25
- Watchers: 0
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - robinheghan/murmur3 - Elm implementation of murmur3 hash function (Elm)
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"