rostl-oram 0.1.0-alpha9

Oblivious RAM (ORAM) implementations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Prelude module for the ORAM crate
///
///
/// Type used for positions in the position map
pub type PositionType = u32;
/// The default invalid position
pub const DUMMY_POS: PositionType = PositionType::MAX;

// UNDONE(git-26): This should be a generic type across the crate to support safe map, not just usize
/// Type used for ORAM Indexes
pub type K = usize;