go implementation of CodeDweller/mishmash.hpp/cpp
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
William Dillon 5f5bdae562 updating mishmash - changed some types to remove a lot of casting from Engine(), renamed slct to selectPrime. removed some extra code from the Mishmash benchmark 3 роки тому
LICENSE.TXT first commit 3 роки тому
README.md adding collision stats to README 3 роки тому
go.mod adding go.mod file 3 роки тому
mishmash.go updating mishmash - changed some types to remove a lot of casting from Engine(), renamed slct to selectPrime. removed some extra code from the Mishmash benchmark 3 роки тому
mishmash_test.go updating mishmash - changed some types to remove a lot of casting from Engine(), renamed slct to selectPrime. removed some extra code from the Mishmash benchmark 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.