TbsCertificate

@Serializable(with = TbsCertificate.Companion::class)
open class TbsCertificate(val version: Int? = 2, val serialNumber: ByteArray, val signatureAlgorithm: SignatureAlgorithmIdentifier, val issuerName: List<RelativeDistinguishedName>, val validFrom: Asn1Time, val validUntil: Asn1Time, val subjectName: List<RelativeDistinguishedName>, val subjectPublicKeyInfo: SubjectPublicKeyInfo, val issuerUniqueID: Asn1BitString? = null, val subjectUniqueID: Asn1BitString? = null, val extensions: List<X509CertificateExtension>? = null) : Asn1Encodable<Asn1Sequence> (source)

Constructors

Link copied to clipboard
constructor(version: Int? = 2, serialNumber: ByteArray, signatureAlgorithm: SignatureAlgorithmIdentifier, issuerName: List<RelativeDistinguishedName>, validFrom: Asn1Time, validUntil: Asn1Time, subjectName: List<RelativeDistinguishedName>, subjectPublicKeyInfo: SubjectPublicKeyInfo, issuerUniqueID: Asn1BitString? = null, subjectUniqueID: Asn1BitString? = null, extensions: List<X509CertificateExtension>? = null)

Types

Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val version: Int?

Functions

Link copied to clipboard
open override fun encodeToTlv(): Asn1Sequence
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
Link copied to clipboard
open infix fun withImplicitTag(tagValue: ULong): Asn1Element