Pearson hashing is a hash function designed for fast execution on processors with 8-bit registers.
- First published - 1990
- Digest sizes - 8 bits
- Structure - xor/table
Peter K. Pearson
- pearson.c
h := 0
for each c in C loop
index := h xor c
h := T[index]
end loop
return h