deterministic_bloom/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![warn(missing_debug_implementations, missing_docs, rust_2018_idioms)]
3#![deny(unreachable_pub, private_in_public)]
4
5//! Deterministic Bloom filters
6//!
7//! This Crate is intented as a solid basis for cache reproducability
8//! and for underlying certain cryptographic primitives.
9
10/// Some structs and implementations that multiple bloom implementations can depend on
11pub mod common;
12/// Bloom filters with compile-time-determinted parameters (size & hash count)
13pub mod const_size;
14/// Bloom filters with runtime-determined parameters. Their size can be chosen
15/// arbitrarily at runtime, but not be modified during use (they're not resizable).
16pub mod runtime_size;
17
18mod utils;