Skip to content

Commit

Permalink
fix typo in participant.rs (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbar committed Aug 11, 2023
1 parent daa0a1a commit 98b8963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/participant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ impl Participant {
pubkey.modpow(&secret_share, &self.mpvss.q);
shares.insert(pubkey.clone(), encrypted_secret_share.clone());

// DLEQ(g1,h2,g2,h2) => DLEQ(g,X_i,y_i,Y_i) => DLEQ(g,commintment_with_secret_share,pubkey,enrypted_secret_share_from_pubkey)
// DLEQ(g1,h1,g2,h2) => DLEQ(g,X_i,y_i,Y_i) => DLEQ(g,commintment_with_secret_share,pubkey,enrypted_secret_share_from_pubkey)
// Prove That g^alpha = commintment_with_secret_share and pubkey^alpha = encrypted_secret_share_from_pubkey has same alpha value
let mut dleq = DLEQ::new();
dleq.init2(
Expand Down

0 comments on commit 98b8963

Please sign in to comment.