Interface JsonWebKeyRSAPublic

Interfaces for JSON Web Key objects, as per RFC7517.

interface JsonWebKeyRSAPublic {
    e: string;
    kid?: string;
    kty: string;
    n: string;
}

Hierarchy (view full)

Properties

Properties

e: string

Base64url-encoded exponent.

kid?: string

Key ID.

kty: string

Key type.

n: string

Base64url-encoded modulus.