Tagged Questions
4
votes
3answers
457 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 ...
0
votes
1answer
33 views
FNV hashing for strings in C
Here is what the algorithm says.
hash = FNV_offset_basis
for each octet_of_data to be hashed
hash = hash * FNV_prime
hash = hash XOR octet_of_data
return hash
but if i have a set of strings ...