aboutsummaryrefslogtreecommitdiff
path: root/srp/src/lib.rs
diff options
context:
space:
mode:
authorJosh Brown <josh9051@gmail.com>2022-01-22 09:38:33 -0500
committerGitHub <noreply@github.com>2022-01-22 07:38:33 -0700
commit6d963225520f0d8e5948457b8ba25bd563382f5e (patch)
tree12c05900061a93c74242d37f5dc1935977c9bd8c /srp/src/lib.rs
parent689dc0ab6af950b027b4bab96f73c427d2c42d6e (diff)
downloadPAKEs-6d963225520f0d8e5948457b8ba25bd563382f5e.tar.xz
srp: rebuild library (#79)
Complete rewrite of the SRP library. Includes many improvements over the old library: - Improved file and code organization - Access to individual SRP computations - Consistent sever and client API - Simpler API - Improved documentation with tests in documentation - New tests for compatibility with the RFC - Bumps dependencies - Timing safe verification comparisons - Modernized error handling
Diffstat (limited to 'srp/src/lib.rs')
-rw-r--r--srp/src/lib.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/srp/src/lib.rs b/srp/src/lib.rs
index 375dfb3..9ce0346 100644
--- a/srp/src/lib.rs
+++ b/srp/src/lib.rs
@@ -10,12 +10,6 @@
//! srp = "0.4"
//! ```
//!
-//! and this to your crate root:
-//!
-//! ```rust
-//! extern crate srp;
-//! ```
-//!
//! Next read documentation for [`client`](client/index.html) and
//! [`server`](server/index.html) modules.
//!
@@ -60,3 +54,4 @@ pub mod client;
pub mod groups;
pub mod server;
pub mod types;
+pub mod utils;