-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathParsedCertificate.php
123 lines (101 loc) · 2.71 KB
/
ParsedCertificate.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
/*
* This file is part of the Acme PHP project.
*
* (c) Titouan Galopin <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace AcmePhp\Ssl;
use Webmozart\Assert\Assert;
/**
* Represent the content of a parsed certificate.
*
* @author Jérémy Derussé <[email protected]>
*/
class ParsedCertificate
{
/** @var Certificate */
private $source;
/** @var string */
private $subject;
/** @var string */
private $issuer;
/** @var bool */
private $selfSigned;
/** @var \DateTime */
private $validFrom;
/** @var \DateTime */
private $validTo;
/** @var string */
private $serialNumber;
/** @var array */
private $subjectAlternativeNames;
/**
* @param string $issuer
* @param \DateTime $validFrom
* @param \DateTime $validTo
* @param string $serialNumber
*/
public function __construct(
Certificate $source,
string $subject,
string $issuer = null,
bool $selfSigned = true,
\DateTime $validFrom = null,
\DateTime $validTo = null,
string $serialNumber = null,
array $subjectAlternativeNames = []
) {
Assert::stringNotEmpty($subject, __CLASS__.'::$subject expected a non empty string. Got: %s');
Assert::allStringNotEmpty(
$subjectAlternativeNames,
__CLASS__.'::$subjectAlternativeNames expected a array of non empty string. Got: %s'
);
$this->source = $source;
$this->subject = $subject;
$this->issuer = $issuer;
$this->selfSigned = $selfSigned;
$this->validFrom = $validFrom;
$this->validTo = $validTo;
$this->serialNumber = $serialNumber;
$this->subjectAlternativeNames = $subjectAlternativeNames;
}
public function getSource(): Certificate
{
return $this->source;
}
public function getSubject(): string
{
return $this->subject;
}
public function getIssuer(): ?string
{
return $this->issuer;
}
public function isSelfSigned(): bool
{
return $this->selfSigned;
}
public function getValidFrom(): \DateTimeInterface
{
return $this->validFrom;
}
public function getValidTo(): \DateTimeInterface
{
return $this->validTo;
}
public function isExpired(): bool
{
return $this->validTo < (new \DateTime());
}
public function getSerialNumber(): ?string
{
return $this->serialNumber;
}
public function getSubjectAlternativeNames(): array
{
return $this->subjectAlternativeNames;
}
}