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