#![doc(html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo_small.png")]
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate failure;
extern crate num_iter;
extern crate rand;
extern crate subtle;
extern crate zeroize;
#[cfg(feature = "serde1")]
extern crate serde;
#[cfg(test)]
extern crate base64;
#[cfg(test)]
extern crate hex;
#[cfg(all(test, feature = "serde1"))]
extern crate serde_test;
pub mod algorithms;
pub mod errors;
pub mod hash;
pub mod padding;
mod key;
mod pkcs1v15;
pub use self::key::{PublicKey, RSAPrivateKey, RSAPublicKey};
pub use self::padding::PaddingScheme;
#[cfg(not(feature = "expose-internals"))]
mod internals;
#[cfg(feature = "expose-internals")]
pub mod internals;