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