go implementation of CodeDweller/mishmash.hpp/cpp
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
William Dillon b65d469721 updating mishmash hash to match main CodeDweller branch vor 3 Jahren
LICENSE.TXT first commit vor 3 Jahren
README.md adding collision stats to README vor 3 Jahren
go.mod adding go.mod file vor 3 Jahren
mishmash.go updating mishmash hash to match main CodeDweller branch vor 3 Jahren
mishmash_test.go updating mishmash hash to match main CodeDweller branch vor 3 Jahren

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.