Skip to content

Commit

Permalink
Fix ring::signature documentation typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
briansmith committed May 25, 2016
1 parent b1fa3a4 commit 51e6a18
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@
//! for `verify` for examples.
//!
//! The design of this module is unusual compared to other public key signature
//! APIs. Algorithms are split into "signing" (suffixed `_SIGN`) and
//! "verification" (suffixed `_VERIFY`) algorithms in order to make it easier
//! for the linker to discard unused code in the case where only signing is
//! done or only verification is done with a given algorithm. (Currently, only
//! the verification algorithms are )
//! APIs. Algorithms are split into "signing" (suffixed `_SIGN`, and not yet
//! implemented) and "verification" (suffixed `_VERIFY`) algorithms in order to
//! make it easier for the linker to discard unused code in the case where only
//! signing is done or only verification is done with a given algorithm.
//!
//! Also, this API treats each combination of parameters as a separate
//! algorithm. For example, instead of having a single "RSA" algorithm with a
Expand Down

0 comments on commit 51e6a18

Please sign in to comment.