Randomize the given PublicKeyPackage for usage in a re-randomized FROST aggregation, using the given RandomizedParams.
It's recommended to use aggregate() directly which already handles the public key package randomization.
aggregate()
The ciphersuite to use
The original public key package to randomize
The randomized parameters
The randomized public key package
const randomizedPublicKeyPackage = randomizePublicKeyPackage( ciphersuite, publicKeyPackage, randomizedParams,);// Use for signature aggregation Copy
const randomizedPublicKeyPackage = randomizePublicKeyPackage( ciphersuite, publicKeyPackage, randomizedParams,);// Use for signature aggregation
Randomize the given PublicKeyPackage for usage in a re-randomized FROST aggregation, using the given RandomizedParams.
It's recommended to use
aggregate()directly which already handles the public key package randomization.