30 lines
949 B
Rust
30 lines
949 B
Rust
#![feature(i128_type)]
|
|
//! # Simple Crypto: A quaint little crypto library for rust.
|
|
//!
|
|
//! This is the simple_crypto library. Its goal is to provide straightforward
|
|
//! coverage of most of the common cryptographic algorithms used today, along
|
|
//! with simplified interfaces for new users. If you see something that's
|
|
//! unclear, please point it out! We can always use documentation help.
|
|
//!
|
|
//! This main library will eventually provide most of the convenience functions
|
|
//! that a new user should use, along with documentation regarding how and
|
|
//! when they should use it, and examples. For now, it mostly just fowards
|
|
//! off to more detailed modules. Help requested!
|
|
|
|
#[cfg(test)]
|
|
#[macro_use]
|
|
extern crate quickcheck;
|
|
|
|
/// The cryptonum module provides support for large numbers at fixed,
|
|
/// cryptographically-relevant sizes.
|
|
pub mod cryptonum;
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
|
|
#[test]
|
|
fn testing_works() {
|
|
assert!(true);
|
|
}
|
|
}
|