Interface JsonWebKeyRSAPrivate

Interfaces for JSON Web Key objects, as per RFC7517.

interface JsonWebKeyRSAPrivate {
    d: string;
    dp: string;
    dq: string;
    e: string;
    kid?: string;
    kty: string;
    n: string;
    p: string;
    q: string;
    qi: string;
}

Hierarchy (view full)

Properties

Properties

d: string

Private exponent.

dp: string
dq: string
e: string

Base64url-encoded exponent.

kid?: string

Key ID.

kty: string

Key type.

n: string

Base64url-encoded modulus.

p: string

Additional exponents.

q: string
qi: string