Skip to content

Commit 5203987

Browse files
nits
1 parent 96fac9a commit 5203987

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

consensus/src/simplex/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ where
9191
/// Consensus messages can be signed with a cryptosystem that differs from the static
9292
/// participant identity keys exposed in `participants`. For example, we can authenticate peers
9393
/// on the network with [commonware_cryptography::ed25519] keys while signing votes with shares distributed
94-
/// via [commonware_cryptography::bls12381::dkg::feldman_desmedt] (which change each epoch). The scheme implementation is
94+
/// via [commonware_cryptography::bls12381::dkg] (which change each epoch). The scheme implementation is
9595
/// responsible for reusing the exact participant ordering carried by `participants` so that signer indices
9696
/// remain stable across both key spaces; if the order diverges, validators will reject votes as coming from
9797
/// the wrong validator.

consensus/src/simplex/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@
271271
//!
272272
//! [scheme::bls12381_threshold] employs threshold cryptography (BLS12-381 threshold signatures with a `2f+1` of `3f+1` quorum)
273273
//! to generate succinct consensus certificates (verifiable with just the static public key). This scheme requires instantiating
274-
//! the shared secret via [commonware_cryptography::bls12381::dkg::feldman_desmedt] and resharing whenever participants change.
274+
//! the shared secret via [commonware_cryptography::bls12381::dkg] and resharing whenever participants change.
275275
//!
276276
//! Two (non-attributable) variants are provided:
277277
//!
@@ -296,7 +296,7 @@
296296
//! #### Succinct Certificates
297297
//!
298298
//! All broadcast consensus messages (`notarize(c,v)`, `nullify(v)`, `finalize(c,v)`) contain attestations (partial signatures) for a static
299-
//! public key (derived from a group polynomial that can be recomputed during reconfiguration using [dkg](commonware_cryptography::bls12381::dkg::feldman_desmedt)).
299+
//! public key (derived from a group polynomial that can be recomputed during reconfiguration using [dkg](commonware_cryptography::bls12381::dkg)).
300300
//! As soon as `2f+1` messages are collected, a threshold signature over `notarization(c,v)`, `nullification(v)`, and `finalization(c,v)`
301301
//! can be recovered, respectively. Because the public key is static, any of these certificates can be verified by an external
302302
//! process without following the consensus instance and/or tracking the current set of participants (as is typically required

cryptography/fuzz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ doc = false
133133
bench = false
134134

135135
[[bin]]
136-
name = "bls12381_dkg"
137-
path = "fuzz_targets/bls12381_dkg.rs"
136+
name = "bls12381_dkg_feldman_desmedt"
137+
path = "fuzz_targets/bls12381_dkg_feldman_desmedt.rs"
138138
test = false
139139
doc = false
140140
bench = false

cryptography/fuzz/fuzz_targets/bls12381_dkg.rs renamed to cryptography/fuzz/fuzz_targets/bls12381_dkg_feldman_desmedt.rs

File renamed without changes.

0 commit comments

Comments
 (0)