We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9046c4f commit e567cc4Copy full SHA for e567cc4
timeboost-crypto/src/feldman.rs
@@ -345,11 +345,10 @@ impl<C: CurveGroup> KeyResharing<Self> for FeldmanVss<C> {
345
row_commitments.iter().map(|row| row[j]).collect();
346
interpolate_in_exponent::<C>(&eval_points, &j_th_coeffs)
347
.map_err(|e| VssError::FailedCombine(e.to_string()))
348
+ .map(|p| p.into_affine())
349
})
350
.collect::<Result<Vec<_>, VssError>>()?;
351
- let new_commitment = C::normalize_batch(&new_commitment);
352
-
353
Ok((new_secret, new_commitment.into()))
354
}
355
0 commit comments