pub type RapidHasher<'s> = RapidHasher<'s, AVALANCHE, SPONGE, COMPACT, PROTECTED>;Expand description
A [std::hash::Hasher] inspired by crate::v3::rapidhash_v3 with a focus on speed and
throughput.
This is an alias for inner::RapidHasher with the following settings:
AVALANCHEis disabled.SPONGEis enabled.COMPACTis disabled.PROTECTEDis disabled.
Use crate::quality::RapidHasher for a higher quality hash output where necessary.
Aliased Typeยง
pub struct RapidHasher<'s> { /* private fields */ }