Interface JsonWebKeyECPublic

Interfaces for JSON Web Key objects, as per RFC7517.

interface JsonWebKeyECPublic {
    crv: string;
    kid?: string;
    kty: string;
    x: string;
    y: string;
}

Hierarchy (view full)

Properties

Properties

crv: string

Elliptic curve identifier.

kid?: string

Key ID.

kty: string

Key type.

x: string

Base64url-encoded x coordinate.

y: string

Base64url-encoded y coordinate.