go implementation of CodeDweller/mishmash.hpp/cpp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
William Dillon 0659e4e33b adding go.mod file пре 3 година
LICENSE.TXT first commit пре 3 година
README.md adding collision stats to README пре 3 година
go.mod adding go.mod file пре 3 година
mishmash.go testing against CodeDweller/mishmash, minor changes in preparation of testing Golang Threatable пре 3 година
mishmash_test.go updated mishmash - engine returns accumulator for use with Mishmash which takes it as an optional seed. Mishmash can be seeded however desired through this mechanism as well. Added simple function to decode accumulator for ease of use when we're going to be double hashing пре 3 година

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.