SubjectPublicKeyInfo

@Serializable
data class SubjectPublicKeyInfo(val algorithmIdentifier: X509AlgorithmIdentifier, val subjectPublicKey: Asn1BitString) : WithPemLabel(source)

As per RFC5280:

SubjectPublicKeyInfo ::= SEQUENCE {
algorithm AlgorithmIdentifier,
subjectPublicKey BIT STRING
}

Constructors

Link copied to clipboard
constructor(algorithmIdentifier: X509AlgorithmIdentifier, subjectPublicKey: Asn1BitString)

Types

Link copied to clipboard
object Companion : PemLabelSpec<SubjectPublicKeyInfo>

Properties

Link copied to clipboard
val algorithmOid: ObjectIdentifier
Link copied to clipboard
val algorithmParameters: Asn1Element?
Link copied to clipboard
open override val pemLabel: String
Link copied to clipboard
val subjectPublicKey: Asn1BitString

Functions