go implementation of CodeDweller/mishmash.hpp/cpp
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
William Dillon 262ea789d3 updating primeset and mishmash_test.go 2年前
LICENSE.TXT first commit 3年前
README.md adding collision stats to README 2年前
go.mod adding go.mod file 2年前
mishmash.go updating primeset and mishmash_test.go 2年前
mishmash_test.go updating primeset and mishmash_test.go 2年前

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.