Interface JsonWebKeyEdDSAPublic

Interfaces for JSON Web Key objects, as per RFC7517.

interface JsonWebKeyEdDSAPublic {
    crv: string;
    kid?: string;
    kty: string;
    x: string;
}

Hierarchy (view full)

Properties

Properties

crv: string

Elliptic curve identifier.

kid?: string

Key ID.

kty: string

Key type.

x: string

Base64url-encoded public key.

Generated using TypeDoc