Expand description
Deterministic Bloom filters
This Crate is intented as a solid basis for cache reproducability and for underlying certain cryptographic primitives.
Modules§
- common
- Some structs and implementations that multiple bloom implementations can depend on
- const_
size - Bloom filters with compile-time-determinted parameters (size & hash count)
- runtime_
size - Bloom filters with runtime-determined parameters. Their size can be chosen arbitrarily at runtime, but not be modified during use (they’re not resizable).