ore-rs 0.8.3

Order-revealing encryption library used by the CipherStash searchable encryption platform
Documentation
1
2
3
4
5
6
7
8
//! Concrete BlockORE schemes. The crate currently exposes one scheme,
//! [`bit2`], which uses a 2-bit indicator function with AES-128 as the PRF
//! and Knuth-shuffle as the per-block PRP. Future schemes (different
//! indicator widths or primitive choices) would land alongside it as
//! sibling submodules.

/// 2-bit-indicator BlockORE with AES-128 PRF and Knuth-shuffle PRP.
pub mod bit2;