TemporalInterval

data class TemporalInterval(val startInclusive: Instant, val endExclusive: Instant)(source)

Defines the time range during which a CT log accepts certificates.

Certificates with a notBefore date outside this interval are not accepted by the corresponding log server.

Constructors

Link copied to clipboard
constructor(startInclusive: Instant, endExclusive: Instant)

Properties

Link copied to clipboard
val endExclusive: Instant

The end of the acceptance window (exclusive).

Link copied to clipboard
val startInclusive: Instant

The start of the acceptance window (inclusive).