go implementation of CodeDweller/mishmash.hpp/cpp
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
William Dillon b65d469721 updating mishmash hash to match main CodeDweller branch il y a 3 ans
LICENSE.TXT first commit il y a 3 ans
README.md adding collision stats to README il y a 3 ans
go.mod adding go.mod file il y a 3 ans
mishmash.go updating mishmash hash to match main CodeDweller branch il y a 3 ans
mishmash_test.go updating mishmash hash to match main CodeDweller branch il y a 3 ans

README.md

Mishmash

this is a non-cryptographic hash optimized for short strings.

.003% collision rate on 326K entries during testing

adapted from CodeDweller/mishmash

to use: use the Mishmash function. If you’re in need of a second hash use Engine instead, which will return the accumulator. You can use the MishmashAccumulator function to mishmash your accumulator, and could also feed that accumulator back into Mishmash to double hash.