fancy_garbling/lib.rs
1//! `fancy-garbling` provides boolean and arithmetic garbling capabilities.
2#![allow(non_snake_case)]
3#![deny(missing_docs)]
4// TODO: when https://git.io/JYTnW gets stabilized add the readme as module docs.
5
6pub mod classic;
7mod garble;
8pub mod util;
9mod wire;
10
11pub use crate::{garble::*, wire::*};