Skip to main content

JwkParamsRsa

@iota/identity-wasm API documentation


Interface: JwkParamsRsa

Parameters for RSA Keys.

More Info

Extended by​

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