crv static method

BigInt crv(
  1. BigInt x
)

x³ + ax + b weierstrass formula; a=0

Implementation

static BigInt crv(BigInt x) => mod(mod(x * x) * x + Curve.secp256k1.b);