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