Crate JenkHash

Crate JenkHash 

Source
Expand description

JenkHash - A collection of hash functions designed by Bob Jenkins.

This crate provides implementations of several hash algorithms created by Bob Jenkins, including Lookup2, Lookup3, SpookyHash, and the one-at-a-time hash. These hash functions are designed for use in hash tables and other data structures requiring fast, well-distributed hash values.

All hash implementations in this crate implement the Hasher trait, providing a unified API for incremental hashing operations.

Modulesยง

lookup2
Implementation of the Lookup2 hash algorithm (Jenkins hash function).
lookup3
Implementation of the Lookup3 hash algorithm.
one_at_a_time
Implementation of the one-at-a-time hash algorithm.
spooky
Implementation of the SpookyHash algorithm.