You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should contain a vector of commitments instead of just one commitment.
In our tests, we also consider only the zeroth commitment, which is a commitment to the shared secret, and we don't consider the remaining commitments:
The struct ShareCommitment is a vector, and represents a public commitment C⃗i as defined in step 3, Round 1 of Figure 1 of the FROST paper. This public commitment contains commitments to the individual coefficients of the secret polynomial.
The text was updated successfully, but these errors were encountered:
Description
The field
share_commitment
redjubjub/src/messages.rs
Line 189 in 3db05e2
should contain a vector of commitments instead of just one commitment.
In our tests, we also consider only the zeroth commitment, which is a commitment to the shared secret, and we don't consider the remaining commitments:
redjubjub/src/messages/tests/integration.rs
Line 783 in 3db05e2
Rationale
The field
share_commitment
, as defined above, should represent the structShareCommitment
in the FROST implementation:redjubjub/src/frost.rs
Line 93 in 3db05e2
The struct
ShareCommitment
is a vector, and represents a public commitment C⃗i as defined in step 3, Round 1 of Figure 1 of the FROST paper. This public commitment contains commitments to the individual coefficients of the secret polynomial.The text was updated successfully, but these errors were encountered: