Certificate Response
data class CertificateResponse(val issuer: String, val notAfterTime: String, val notBeforeTime: String, val parsed: Boolean, val rawDer: String, val serialNumber: String, val sha256Fingerprint: String, val subject: String, val subjectAlternativeDnsNames: List<String>)
A Certificate represents an X.509 certificate used to authenticate HTTPS connections to EKM replicas.
Constructors
Properties
Link copied to clipboard
The certificate is not valid after this time. Only present if parsed is true.
Link copied to clipboard
The certificate is not valid before this time. Only present if parsed is true.
Link copied to clipboard
The certificate serial number as a hex string. Only present if parsed is true.
Link copied to clipboard
The SHA-256 certificate fingerprint as a hex string. Only present if parsed is true.
Link copied to clipboard
The subject Alternative DNS names. Only present if parsed is true.