The ciphersuite to use
The signing package containing the message and commitments
Map of identifier to signature share from each participant
The original (non-randomized) public key package
The randomized parameters used for signing
The aggregated Schnorr signature
Re-randomized FROST signature share aggregation with the given RandomizedParams, which can be computed from the previously generated randomizer using
RandomizedParams.fromRandomizer()orRandomizedParams.newFromCommitments().This function aggregates signature shares from all participants into a final Schnorr signature. The resulting signature will verify against the randomized verifying key (
randomizedParams.randomizedVerifyingKey).Note: This function requires the
aggregatefunction from@frosts/corewhich aggregates signature shares into a final signature. Currently, this implementation provides the randomization wrapper.