TLSInfo

@Serializable
data class TLSInfo(val trustRoot: String? = null, val certIssuerSubject: String? = null, val certIssuerPublicKey: String? = null)

Information about the issuer of leaf TLS certificates and the trusted root CA certificate.

Parameters

trustRoot

The root CA certificate(s) that are used to validate leaf TLS certificates.

certIssuerSubject

The base64-url-safe-encoded raw subject bytes of the issuer.

certIssuerPublicKey

The base64-url-safe-encoded raw public key bytes of the issuer.

Constructors

Link copied to clipboard
constructor(trustRoot: String? = null, certIssuerSubject: String? = null, certIssuerPublicKey: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "CertIssuerPublicKey")
val certIssuerPublicKey: String?
Link copied to clipboard
@SerialName(value = "CertIssuerSubject")
val certIssuerSubject: String?
Link copied to clipboard
@SerialName(value = "TrustRoot")
val trustRoot: String?