geToEcPoint static method

ProjectiveECCPoint geToEcPoint(
  1. Secp256k1Ge element
)

Implementation

static ProjectiveECCPoint geToEcPoint(Secp256k1Ge element) {
  final p = geToBytes(element);
  return ProjectiveECCPoint.fromBytes(curve: Curves.curveSecp256k1, data: p);
}