ECCurveFp constructor

ECCurveFp(
  1. BigInt q,
  2. BigInt a,
  3. BigInt b
)

Implementation

ECCurveFp(this.q, BigInt a, BigInt b) {
  this.a = fromBigInteger(a);
  this.b = fromBigInteger(b);
  infinity = ECPointFp(this, null, null); // 无穷远点
}