mirror of
https://github.com/saymrwulf/risc0-curve25519-dalek-source.git
synced 2026-09-04 20:03:40 +00:00
Document batch verification on docs.rs and fix false autolinking.
This commit is contained in:
parent
81f906ca30
commit
15d0a6596f
3 changed files with 9 additions and 4 deletions
|
|
@ -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 }
|
||||
|
|
|
|||
|
|
@ -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
|
||||
///
|
||||
|
|
|
|||
|
|
@ -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
|
||||
///
|
||||
|
|
|
|||
Loading…
Reference in a new issue