For the complete documentation index, see llms.txt. This page is also available as Markdown.

Hashing

Open address hashing

Cryptographically secure hashing

Hash functions

FNV Hash

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