go implementation of CodeDweller/mishmash.hpp/cpp
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
William Dillon 262ea789d3 updating primeset and mishmash_test.go před 2 roky
LICENSE.TXT first commit před 3 roky
README.md adding collision stats to README před 2 roky
go.mod adding go.mod file před 2 roky
mishmash.go updating primeset and mishmash_test.go před 2 roky
mishmash_test.go updating primeset and mishmash_test.go před 2 roky

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.