//! # Distrand
//!
//! Distrand is a library for ***dist***tributed ***rand***om value generation.
//!
//! It uses a simple commit-reveal algorithm that is suitable for small numbers
//! of participants. Each participant must communicate with every other
//! participant, so the number of messages increases dramatically as the number
//! of participants increases.
//!
//! See the `examples` directory for a tutorial.
extern crate bincode;
extern crate crypto_mac;
extern crate error_chain;
pub extern crate rand;
extern crate serde;
extern crate typenum;
pub use Commit;
pub use Exchange;
pub use Reveal;
pub use Secret;