ECDomainParametersImpl constructor

ECDomainParametersImpl(
  1. String domainName,
  2. ECCurve curve,
  3. ECPoint G,
  4. BigInt n, [
  5. BigInt? _h,
  6. List<int>? seed,
])

Implementation

ECDomainParametersImpl(this.domainName, this.curve, this.G, this.n,
    [this._h, this.seed]) {
  _h ??= BigInt.one;
}