Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Fiono11 committed May 15, 2024
1 parent ae48d3a commit aa79b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ed25519-dalek/src/olaf/frost/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ impl SigningKeypair {
) -> SignatureShare {
let z_share: Scalar = signer_nonces.hiding.0
+ (signer_nonces.binding.0 * binding_factor.0)
+ (lambda_i * self.0.to_scalar() * challenge);
+ (lambda_i * Scalar::from_canonical_bytes(self.0.secret_key).unwrap() * challenge);

SignatureShare { share: z_share }
}
Expand Down

0 comments on commit aa79b67

Please sign in to comment.