ECPublicKey constructor

ECPublicKey(
  1. BigInt x,
  2. BigInt y
)

Create an ECPublicKey for the given coordinates.

Implementation

ECPublicKey(BigInt x, BigInt y)
    : _publicKey =
          pointy.ECPublicKey(ECPoint(x, y, true).asPointyCastle, curve);