Tagged Questions
The fnv tag has no wiki summary.
4
votes
3answers
443 views
Objective-C : Fowler–Noll–Vo (FNV) Hash implementation
I have a HTTP connector in my iPhone project and queries must have a parameter set from the username using the Fowler–Noll–Vo (FNV) Hash.
I have a Java implementation working at this time, this is ...
1
vote
2answers
261 views
Implementation of FNV
I am trying to implement FNV hash from http://isthe.com/chongo/tech/comp/fnv/
I converted the PowerBasic's inline asm on that page into Delphi.
function ReadFileToMem(sPath:string):Pointer;
...
1
vote
2answers
829 views
Is there a mature implementation of the FNV hashing algorithm in Java?
I've seen the Fowler-Noll-Vo (FNV) recommended as a good choice for a fast hashing algorithm for use in our implementation of a consistent hashing system.
Can't seem to locate a good Java source for ...