go implementation of CodeDweller/mishmash.hpp/cpp
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
William Dillon 262ea789d3 updating primeset and mishmash_test.go pirms 2 gadiem
LICENSE.TXT first commit pirms 3 gadiem
README.md adding collision stats to README pirms 2 gadiem
go.mod adding go.mod file pirms 2 gadiem
mishmash.go updating primeset and mishmash_test.go pirms 2 gadiem
mishmash_test.go updating primeset and mishmash_test.go pirms 2 gadiem

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.