Implementation of SuperFastHash digester.
SuperFastHash is a non-cryptographic hash function designed for fast hash calculations on small data blocks. It is commonly used in applications where speed is critical.
Computes the SuperFastHash digest of the given data.
import tern.digest.superfasthash; ubyte[] data = [1, 2, 3, 4, 5]; auto hashValue = SuperFastHash.hash(data);
See Implementation
Implementation of SuperFastHash digester.
SuperFastHash is a non-cryptographic hash function designed for fast hash calculations on small data blocks. It is commonly used in applications where speed is critical.