Besides seeded and unseeded variants, XXH3 provides a keyed (withSecret)
variant. This is a bit of a misnomer though, because these functions havea
not been formally verified as message authentication codes; they also do
not guarantee that the entire secret is used, the secret is impractically
large (tens to hundreds of bytes) and pathological secrets are not handled
well at all.
xxh3 128 bit version. Generates a randomized seed using getrandom().
Because the associated hasher generates u32, this does not implement BuildHash,
however this features the same interface.
xxhash 32 bit version. Generates a randomized seed using getrandom().
Because the associated hasher generates u32, this does not implement BuildHash,
however this features the same interface.