Hashing

Open address hashing

Cryptographically secure hashing

Hash functions

The core of the FVN-1 hash algorithm is,

hash = offset_basis
for each octet_of_data to be hashed
 hash = hash * FNV_prime
 hash = hash xor octet_of_data
return hash

Last updated