Security details of an SSL/TLS connection, such as certificate information.

Definition

object SecurityDetails {
  issuer: String
  protocol: String
  subjectName: String
  validFrom: Int
  validTo: Int
}

Fields

issuer: String

The issuer of the certificate.

protocol: String

The protocol used (e.g., ‘TLS 1.3’).

subjectName: String

The subject name of the certificate.

validFrom: Int

Timestamp (Unix epoch in seconds) when the certificate becomes valid.

validTo: Int

Timestamp (Unix epoch in seconds) when the certificate expires.