EllipticCurve constructor

EllipticCurve(
  1. String name,
  2. int bitSize,
  3. BigInt p,
  4. BigInt a,
  5. BigInt b,
  6. BigInt S,
  7. AffinePoint G,
  8. BigInt n,
  9. int h,
)

S currenly is not used by this package

Implementation

EllipticCurve(this.name, this.bitSize, this.p, this.a, this.b, this.S, this.G,
    this.n, this.h);