Interface JsonWebKeyECPrivate

Interfaces for JSON Web Key objects, as per RFC7517.

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

Hierarchy (view full)

Properties

Properties

crv: string

Elliptic curve identifier.

d: string

Base64url-encoded d coordinate.

kid?: string

Key ID.

kty: string

Key type.

x: string

Base64url-encoded x coordinate.

y: string

Base64url-encoded y coordinate.

Generated using TypeDoc