lib.rs 257 B

123456789101112
  1. //! Implementation of the [Ramen distributed oblivious RAM
  2. //! protocol](https://eprint.iacr.org/2023/310).
  3. #![warn(missing_docs)]
  4. pub mod common;
  5. pub mod doprf;
  6. pub mod mask_index;
  7. pub mod oram;
  8. pub mod p_ot;
  9. pub mod select;
  10. pub mod stash;
  11. pub mod tools;