pub fn aggregate<C>(
signing_package: &SigningPackage<C>,
signature_shares: &BTreeMap<Identifier<C>, SignatureShare<C>>,
pubkeys: &PublicKeyPackage<C>,
randomized_params: &RandomizedParams<C>,
) -> Result<Signature<C>, Error<C>>where
C: Ciphersuite,Expand description
Re-randomized FROST signature share aggregation with the given RandomizedParams,
which can be computed from the previously generated randomizer using
RandomizedParams::from_randomizer.
See frost::aggregate for documentation on the other parameters.