JwkParamsRsa
@iota/identity-wasm API documentation
Interface: JwkParamsRsa
Parameters for RSA Keys.
Extended by
Properties
n
n:
string
The modulus value for the RSA public key as a base64urlUInt-encoded value.
e
e:
string
The exponent value for the RSA public key as a base64urlUInt-encoded value.
d?
optionald:string
The private exponent value for the RSA private key as a base64urlUInt-encoded value.
p?
optionalp:string
The first prime factor as a base64urlUInt-encoded value.
q?
optionalq:string
The second prime factor as a base64urlUInt-encoded value.
dp?
optionaldp:string
The Chinese Remainder Theorem (CRT) exponent of the first factor as a base64urlUInt-encoded value.
dq?
optionaldq:string
The CRT exponent of the second factor as a base64urlUInt-encoded value.
qi?
optionalqi:string
The CRT coefficient of the second factor as a base64urlUInt-encoded value.
oth?
optionaloth:JwkParamsRsaPrime[]
An array of information about any third and subsequent primes, should they exist.