Skip to main content
Version: 1.3

Interface: JwkParamsRsa

identity_wasm.JwkParamsRsa

Parameters for RSA Keys.

More Info

Hierarchy

Table of contents

Properties

Properties

n

n: string

The modulus value for the RSA public key as a base64urlUInt-encoded value.

More Info


e

e: string

The exponent value for the RSA public key as a base64urlUInt-encoded value.

More Info


d

Optional d: string

The private exponent value for the RSA private key as a base64urlUInt-encoded value.

More Info


p

Optional p: string

The first prime factor as a base64urlUInt-encoded value.

More Info


q

Optional q: string

The second prime factor as a base64urlUInt-encoded value.

More Info


dp

Optional dp: string

The Chinese Remainder Theorem (CRT) exponent of the first factor as a base64urlUInt-encoded value.

More Info


dq

Optional dq: string

The CRT exponent of the second factor as a base64urlUInt-encoded value.

More Info


qi

Optional qi: string

The CRT coefficient of the second factor as a base64urlUInt-encoded value.

More Info


oth

Optional oth: JwkParamsRsaPrime[]

An array of information about any third and subsequent primes, should they exist.

More Info