Fix the name.

This commit is contained in:
2018-02-25 16:46:56 -08:00
parent b832092605
commit 893dbfb725
2 changed files with 20 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
[package] [package]
name = "simple_rsa" name = "simple_crypto"
version = "0.1.0" version = "0.1.0"
authors = ["Adam Wick <awick@uhsure.com>"] authors = ["Adam Wick <awick@uhsure.com>"]
description = "A simple crypto library for Rust." description = "A simple crypto library for Rust."

View File

@@ -1,3 +1,22 @@
//! # 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)] #[cfg(test)]
mod test { mod test {