CertificateCustomExtension

data class CertificateCustomExtension(val critical: Boolean? = null, val objectIdentifier: String, val value: String)

Specifies the X.509 extension information for a certificate. Extensions present in `CustomExtensions` follow the `ApiPassthrough` template rules.

Constructors

Link copied to clipboard
constructor(critical: Boolean? = null, objectIdentifier: String, value: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val critical: Boolean? = null

Specifies the critical flag of the X.509 extension.

Link copied to clipboard

Specifies the object identifier (OID) of the X.509 extension. For more information, see the Global OID reference database.

Link copied to clipboard

Specifies the base64-encoded value of the X.509 extension.