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 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 před 3 roky
LICENSE.TXT first commit před 3 roky
README.md adding collision stats to README před 3 roky
go.mod adding go.mod file před 3 roky
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 před 3 roky
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 před 3 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.