Type alias JwkParamsRsaPrivate

JwkParamsRsaPrivate: JwkParamsRsaPublic & {
    d: string;
    dp?: string;
    dq?: string;
    oth?: {
        d: string;
        r: string;
        t: string;
    }[];
    p?: string;
    q?: string;
    qi?: string;
}

Parameters used with "RSA" private keys.

Type declaration

  • d: string

    Private exponent for RSA

  • Optional dp?: string

    First factor's CRT exponent for RSA

  • Optional dq?: string

    Second factor's CRT exponent for RSA

  • Optional oth?: {
        d: string;
        r: string;
        t: string;
    }[]

    Other primes information (optional in RFC 7518)

  • Optional p?: string

    First prime factor for RSA

  • Optional q?: string

    Second prime factor for RSA

  • Optional qi?: string

    First CRT coefficient for RSA