Pkcs1RsaPublicKeyInfo

@Serializable
data class Pkcs1RsaPublicKeyInfo(val modulus: Asn1Integer, val publicExponent: Asn1Integer) : WithPemLabel(source)

As per RFC8017:

RSAPublicKey ::= SEQUENCE {
modulus INTEGER,
publicExponent INTEGER
}

Constructors

Link copied to clipboard
constructor(modulus: Asn1Integer, publicExponent: Asn1Integer)

Types

Link copied to clipboard
object Companion : PemLabelSpec<Pkcs1RsaPublicKeyInfo>

Properties

Link copied to clipboard
val modulus: Asn1Integer
Link copied to clipboard
open override val pemLabel: String
Link copied to clipboard
val publicExponent: Asn1Integer