Skip to main content
Module

x/jose/types.d.ts>JWK_RSA_Private

JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes.
Extremely Popular
Latest
interface JWK_RSA_Private
import { type JWK_RSA_Private } from "https://deno.land/x/jose@v5.9.3/types.d.ts";

Convenience interface for Private RSA JSON Web Keys

Properties

d: string

RSA JWK "d" (Private Exponent) Parameter

dp: string

RSA JWK "dp" (First Factor CRT Exponent) Parameter

dq: string

RSA JWK "dq" (Second Factor CRT Exponent) Parameter

optional
oth: Array<{ d?: string; r?: string; t?: string; }>

RSA JWK "oth" (Other Primes Info) Parameter

This parameter is not supported

p: string

RSA JWK "p" (First Prime Factor) Parameter

q: string

RSA JWK "q" (Second Prime Factor) Parameter

qi: string

RSA JWK "qi" (First CRT Coefficient) Parameter