generator256 property

ProjectiveECCPoint generator256
final

Define the generator point for the 256-bit prime field

Implementation

static final ProjectiveECCPoint generator256 = ProjectiveECCPoint(
  curve: curve256,
  x: BigInt.parse(
    "6B17D1F2E12C4247F8BCE6E563A440F277037D812DEB33A0F4A13945D898C296",
    radix: 16,
  ),
  y: BigInt.parse(
    "4FE342E2FE1A7F9B8EE7EB4A7C0F9E162BCE33576B315ECECBB6406837BF51F5",
    radix: 16,
  ),
  z: BigInt.one,
  generator: true,
  order: BigInt.parse(
    "115792089210356248762697446949407573529996955224135760342422259061068512044369",
  ),
);