Is there a mature implementation of the FNV hash algorithm in Java?

I saw Fowler-Noll-Vo (FNV) recommended as a good choice for a fast hashing algorithm for use in our implementation of a serial hashing system.

It does not seem to find a good source of Java.

+3
source share
2 answers

Java sources can be found at getopt.org .

+4
source

This is a good resource for assessing how good a hash function is using statistics - http://home.comcast.net/~bretm/hash/

0
source

Source: https://habr.com/ru/post/1715570/


All Articles