Randomize the given KeyPackage for usage in a re-randomized FROST signing, using the given RandomizedParams.
It's recommended to use signWithRandomizerSeed() directly which already handles the key package randomization.
signWithRandomizerSeed()
IMPORTANT: You MUST NOT reuse the randomized key package for more than one signing.
The ciphersuite to use
The original key package to randomize
The randomized parameters
The randomized key package
const randomizedKeyPackage = randomizeKeyPackage( ciphersuite, keyPackage, randomizedParams,);// Use randomizedKeyPackage for ONE signing operation only Copy
const randomizedKeyPackage = randomizeKeyPackage( ciphersuite, keyPackage, randomizedParams,);// Use randomizedKeyPackage for ONE signing operation only
Randomize the given KeyPackage for usage in a re-randomized FROST signing, using the given RandomizedParams.
It's recommended to use
signWithRandomizerSeed()directly which already handles the key package randomization.IMPORTANT: You MUST NOT reuse the randomized key package for more than one signing.