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
curvexy
Methods
encodeSEC1Compressed()encodeSEC1Uncompressed()encodePKIXCompressed()encodePKIXUncompressed()isCurve()
Properties
interface Properties {
curve: ECDSANamedCurve;
x: bigint;
y: bigint;
}
curvexy