publicKeyFor function
AKA 'point(k)' in the specification
Implementation
ECPoint publicKeyFor(BigInt d) {
return ECPublicKey(curve.G * d, curve).Q!;
}
AKA 'point(k)' in the specification
ECPoint publicKeyFor(BigInt d) {
return ECPublicKey(curve.G * d, curve).Q!;
}