// See file LICENSE for more information. library impl.ec_domain_parameters.secp192k1; import 'package:pointycastle/ecc/api.dart'; import 'package:pointycastle/ecc/ecc_base.dart'; import 'package:pointycastle/src/ec_standard_curve_constructor.dart'; import 'package:pointycastle/src/registry/registry.dart'; // ignore: camel_case_types class ECCurve_secp192k1 extends ECDomainParametersImpl { static final FactoryConfig factoryConfig = StaticFactoryConfig( ECDomainParameters, 'secp192k1', () => ECCurve_secp192k1()); factory ECCurve_secp192k1() => constructFpStandardCurve( 'secp192k1', ECCurve_secp192k1._make, q: BigInt.parse('fffffffffffffffffffffffffffffffffffffffeffffee37', radix: 16), a: BigInt.parse('0', radix: 16), b: BigInt.parse('3', radix: 16), g: BigInt.parse( '04db4ff10ec057e9ae26b07d0280b7f4341da5d1b1eae06c7d9b2f2f6d9c5628a7844163d015be86344082aa88d95e2f9d', radix: 16), n: BigInt.parse('fffffffffffffffffffffffe26f2fc170f69466a74defd8d', radix: 16), h: BigInt.parse('1', radix: 16), seed: null) as ECCurve_secp192k1; static ECCurve_secp192k1 _make(String domainName, ECCurve curve, ECPoint G, BigInt n, BigInt h, List? seed) => ECCurve_secp192k1._super(domainName, curve, G, n, h, seed); ECCurve_secp192k1._super(super.domainName, super.curve, super.G, super.n, BigInt super._h, super.seed); }