Hashing
Open address hashing
Cryptographically secure hashing
Hash functions
hash = offset_basis
for each octet_of_data to be hashed
hash = hash * FNV_prime
hash = hash xor octet_of_data
return hashLast updated