Skip to content

Simple Java Murmur 3 library

License

GPL-3.0, LGPL-3.0 licenses found

Licenses found

GPL-3.0
LICENSE
LGPL-3.0
LICENSE.LESSER
Notifications You must be signed in to change notification settings

Litarvan/JavaMurmur

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaMurmur

Simple Murmur 3 Java library. You can create your Hashing entries, current are : File, String or Byte Array.

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.

About

Simple Java Murmur 3 library

Resources

License

GPL-3.0, LGPL-3.0 licenses found

Licenses found

GPL-3.0
LICENSE
LGPL-3.0
LICENSE.LESSER

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages