class xxHashStream : public OutStream
Provides non-cryptographic good quality hash with close to memory bandwidth speed, by Yann Collet.
int Finish()
Returns the digest.
void Reset(dword seed = 0)
xxHashStream(dword seed = 0)
(Re) starts the hashing, with seed.
class xxHash64Stream : public OutStream
Provides non-cryptographic good quality hash with close to memory bandwidth speed, by Yann Collet.
int64 Finish()
Returns the digest
void Reset(dword seed = 0)
xxHash64Stream(dword seed = 0)
(Re) starts the hashing, with seed.
int xxHash(const void *data, size_t len)
int xxHash(const String& s)
int64 xxHash64(const void *data, size_t len)
int64 xxHash64(const String& s)
Returns the xxHash/xxHash64 of binary data.
|