Rsa
data class Rsa(val n: String, val e: String, val d: String? = null, val p: String? = null, val q: String? = null, val dp: String? = null, val dq: String? = null, val qi: String? = null, val use: String? = null, val keyOps: List<String>? = null, val alg: String? = null, val kid: String? = null) : Jwk(source)
RSA key (kty = "RSA"). Public key requires n and e. Private key additionally requires d; CRT parameters p, q, dp, dq, qi are optional but required for key conversion to cryptography-kotlin types.
Constructors
Types
Link copied to clipboard
Thumbprint computed from the RSA key parameters e (public exponent) and n (modulus).