go implementation of CodeDweller/mishmash.hpp/cpp
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

README.md 457B

12345678
  1. # Mishmash
  2. this is a non-cryptographic hash optimized for short strings.
  3. adapted from CodeDweller/mishmash.h/cpp
  4. https://code.microneil.com/madscientist/CodeDweller/src/branch/master
  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.