ECDSAPublicKey

Represents an ECDSA public key. It does not validate if the point is on the curve.

Definition

function constructor(curve: ECDSANamedCurve, x: bigint, y: bigint): this;

Parameters

  • curve
  • x
  • y

Methods

Properties

interface Properties {
	curve: ECDSANamedCurve;
	x: bigint;
	y: bigint;
}
  • curve
  • x
  • y