Implementation of XXHash digester.
XXHash is an extremely fast non-cryptographic hash algorithm, which offers excellent distribution, especially for small keys and values. It is designed for speed and efficiency on both little-endian and big-endian machines.
Computes the XXHash digest of the given data.
import tern.digest.xxhash; ubyte[] data = [1, 2, 3, 4, 5]; auto hashValue = XXHash.hash(data);
See Implementation
Implementation of XXHash digester.
XXHash is an extremely fast non-cryptographic hash algorithm, which offers excellent distribution, especially for small keys and values. It is designed for speed and efficiency on both little-endian and big-endian machines.