Bind identifiers to the secret chosen by the dealer

This commit is contained in:
Marek 2021-05-25 11:34:49 +01:00
parent 07a405a388
commit 63ee073a82
2 changed files with 24 additions and 6 deletions

View File

@ -251,6 +251,8 @@ fn generate_shares<R: RngCore + CryptoRng>(
threshold: u8,
mut rng: R,
) -> Result<Vec<Share>, &'static str> {
use std::convert::TryInto;
if threshold < 1 {
return Err("Threshold cannot be 0");
}
@ -289,22 +291,37 @@ fn generate_shares<R: RngCore + CryptoRng>(
)));
}
// Participants' identifiers are generated as follows:
// id = H("FROST_id", g^s, i), where:
// g is the basepoint,
// s is the secret chosen by the dealer, and
// i is the index of the participant.
// The hash is finalized in the loop that follows.
let mut hasher = HStar::default();
hasher
.update("FROST_id".as_bytes())
.update(jubjub::AffinePoint::from(SpendAuth::basepoint() * secret.0).to_bytes());
// Evaluate the polynomial with `secret` as the constant term
// and `coeffs` as the other coefficients at the point x=share_index,
// using Horner's method.
for index in 1..numshares + 1 {
let scalar_index = Scalar::from(index as u64);
// The actual identifier consists of the first 64 bits of the resulting hash.
let id_bytes = hasher.update(index.to_be_bytes()).finalize().to_bytes();
let id = u64::from_be_bytes(id_bytes[0..8].try_into().expect("slice of incorrect size"));
let scalar_id = Scalar::from(id);
let mut value = Scalar::zero();
// Polynomial evaluation, for this index
for i in (0..numcoeffs).rev() {
value += &coefficients[i as usize];
value *= scalar_index;
value *= scalar_id;
}
value += secret.0;
shares.push(Share {
receiver_index: index as u64,
receiver_index: id,
value: Secret(value),
commitment: commitment.clone(),
});

View File

@ -15,11 +15,12 @@ fn check_sign_with_dealer() {
let mut commitments: Vec<frost::SigningCommitments> = Vec::with_capacity(threshold as usize);
// Round 1, generating nonces and signing commitments for each participant.
for participant_index in 1..(threshold + 1) {
// Participants are represented by shares.
for share in &shares {
// Generate one (1) nonce and one SigningCommitments instance for each
// participant, up to _threshold_.
let (nonce, commitment) = frost::preprocess(1, participant_index as u64, &mut rng);
nonces.insert(participant_index as u64, nonce);
let (nonce, commitment) = frost::preprocess(1, share.index, &mut rng);
nonces.insert(share.index, nonce);
commitments.push(commitment[0]);
}