Files
simple_crypto/src/cryptonum/mod.rs
2018-06-10 21:09:53 -07:00

21 lines
480 B
Rust

//! # Simple-Crypto CryptoNum
//!
//! This module is designed to provide large, fixed-width number support for
//! the rest of the Simple-Crypto libraries. Feel free to use it other places,
//! of course, but that's its origin.
//!
mod addition;
mod barrett;
mod basetypes;
mod comparison;
#[macro_use]
mod conversions;
mod division;
mod encoding;
mod exponentiation;
mod multiplication;
mod squaring;
mod subtraction;
pub use self::basetypes::*;
pub use self::encoding::Decoder;