Skip to content

Latest commit

 

History

History
 
 

Pearson

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Pearson hashing

Pearson hashing is a hash function designed for fast execution on processors with 8-bit registers.

Informations

  • First published - 1990
  • Digest sizes - 8 bits
  • Structure - xor/table

Authors

Peter K. Pearson

Implementations

  • pearson.c

Materials

Pseudocode

h := 0
for each c in C loop
  index := h xor c
  h := T[index]
end loop
return h