randomize method
Returns a randomized version of this verification key.
Implementation
@override
OrchardSpendVerificationKey randomize(VestaNativeFq randomizer) {
final point = toPoint() + (generator() * randomizer);
return OrchardSpendVerificationKey.fromBytes(point.toBytes());
}