pub type RandomState = RandomState<AVALANCHE, SPONGE, COMPACT, PROTECTED>;Expand description
A rapidhash equivalent to [std::hash::RandomState] that uses a random seed and secrets for
minimal DoS resistance.
This initializes a crate::quality::RapidHasher with the following settings:
AVALANCHEis disabled.SPONGEis enabled.COMPACTis disabled.PROTECTEDis disabled.
Use crate::quality::RandomState for a higher quality but slower hash output where desirable.
Aliased Typeยง
pub struct RandomState { /* private fields */ }