SaplingBindingVerificationKey.fromAutorizationKey constructor
Implementation
factory SaplingBindingVerificationKey.fromAutorizationKey(List<int> sk) {
final generator = SaplingKeyUtils.bindingGenerator.toExtended();
return SaplingBindingVerificationKey(
RedJubJubPrivateKey.fromBytes(sk, generator).publicKey.point,
);
}