Document batch verification on docs.rs and fix false autolinking.

This commit is contained in:
Isis Lovecruft 2019-11-14 22:01:34 +00:00
parent 81f906ca30
commit 15d0a6596f
No known key found for this signature in database
GPG key ID: AB41313533E8E812
3 changed files with 9 additions and 4 deletions

View file

@ -16,6 +16,11 @@ exclude = [ ".gitignore", "TESTVECTORS", "res/*" ]
[badges]
travis-ci = { repository = "dalek-cryptography/ed25519-dalek", branch = "master"}
[package.metadata.docs.rs]
# Disabled for now since this is borked; tracking https://github.com/rust-lang/docs.rs/issues/302
# rustdoc-args = ["--html-in-header", ".cargo/registry/src/github.com-1ecc6299db9ec823/curve25519-dalek-0.13.2/rustdoc-include-katex-header.html"]
features = ["nightly", "batch"]
[dependencies]
clear_on_drop = { version = "0.2" }
curve25519-dalek = { version = "1", default-features = false }

View file

@ -475,8 +475,8 @@ impl Keypair {
/// §5.1.7, for small torsion components in the `R` value of the signature,
/// *which is not strictly required*, as they state:
///
/// > Check the group equation [8][S]B = [8]R + [8][k]A'. It's
/// > sufficient, but not required, to instead check [S]B = R + [k]A'.
/// > Check the group equation \[8\]\[S\]B = \[8\]R + \[8\]\[k\]A'. It's
/// > sufficient, but not required, to instead check \[S\]B = R + \[k\]A'.
///
/// # History of Malleability Checks
///

View file

@ -274,8 +274,8 @@ impl PublicKey {
/// §5.1.7, for small torsion components in the `R` value of the signature,
/// *which is not strictly required*, as they state:
///
/// > Check the group equation [8][S]B = [8]R + [8][k]A'. It's
/// > sufficient, but not required, to instead check [S]B = R + [k]A'.
/// > Check the group equation \[8\]\[S\]B = \[8\]R + \[8\]\[k\]A'. It's
/// > sufficient, but not required, to instead check \[S\]B = R + \[k\]A'.
///
/// # History of Malleability Checks
///