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