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ů.

README.md 434B

123456789
  1. # Mishmash
  2. this is a non-cryptographic hash optimized for short strings.
  3. .003% collision rate on 326K entries during testing
  4. adapted from CodeDweller/mishmash
  5. 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.