type = $type ?? self::determineType($dt); } public static function create(DateTimeImmutable $dt): self { return new self($dt, null); } /** * Initialize from ASN.1. */ public static function fromASN1(TimeType $el): self { return self::create($el->dateTime()); } /** * Initialize from date string. */ public static function fromString(?string $time, ?string $tz = null): self { return self::create(self::createDateTime($time, $tz)); } public function dateTime(): DateTimeImmutable { return $this->dt; } /** * Generate ASN.1. */ public function toASN1(): TimeType { $dt = $this->dt; switch ($this->type) { case Element::TYPE_UTC_TIME: return UTCTime::create($dt); case Element::TYPE_GENERALIZED_TIME: // GeneralizedTime must not contain fractional seconds // (rfc5280 4.1.2.5.2) if ((int) $dt->format('u') !== 0) { // remove fractional seconds (round down) $dt = self::roundDownFractionalSeconds($dt); } return GeneralizedTime::create($dt); } throw new UnexpectedValueException('Time type ' . Element::tagToName($this->type) . ' not supported.'); } /** * Determine whether to use UTCTime or GeneralizedTime ASN.1 type. * * @return int Type tag */ protected static function determineType(DateTimeImmutable $dt): int { if ($dt->format('Y') >= 2050) { return Element::TYPE_GENERALIZED_TIME; } return Element::TYPE_UTC_TIME; } }