1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Implementation of the Weng-Yang-Katz-Wang random subfield VOLE protocol (cf.
//! <https://eprint.iacr.org/2020/925>).

mod base_svole;
mod copee;
mod ggm_utils;
mod specialization;
mod spsvole;
mod svole;
mod utils;

pub use svole::{
    LpnParams, Receiver, Sender, LPN_EXTEND_LARGE, LPN_EXTEND_MEDIUM, LPN_EXTEND_SMALL,
    LPN_SETUP_LARGE, LPN_SETUP_MEDIUM, LPN_SETUP_SMALL,
};