Interface EcdsaPublicKey

interface EcdsaPublicKey {
    kty: "EC";
    crv: "P-256";
    x: string;
    y: string;
    kid?: string;
}

Properties

Properties

kty: "EC"
crv: "P-256"
x: string
y: string
kid?: string