Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/litarvan/javamurmur
Simple Java Murmur 3 library
https://github.com/litarvan/javamurmur
Last synced: about 2 months ago
JSON representation
Simple Java Murmur 3 library
- Host: GitHub
- URL: https://github.com/litarvan/javamurmur
- Owner: Litarvan
- License: gpl-3.0
- Created: 2016-01-25T21:52:51.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-27T17:20:45.000Z (almost 9 years ago)
- Last Synced: 2023-08-18T22:12:34.100Z (over 1 year ago)
- Language: Java
- Size: 66.4 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JavaMurmur
Simple Murmur 3 Java library.
You can create your Hashing entries, current are : File, String or Byte Array.```java
MurmurHasher hasher = new StringMurmurHasher();
MurmurHash hash = hasher.hash("Hello !");System.out.println("Base 32 string hash : " + hash.toString());
System.out.println("Raw hash : " + hash.toInt());
```You can remplace StringMurmurHasher by BytesMurmurHasher or FileMurmurHasher.