@@ -19,87 +19,87 @@ |
||
19 | 19 | */ |
20 | 20 | class OtherName extends GeneralName |
21 | 21 | { |
22 | - /** |
|
23 | - * Type OID. |
|
24 | - * |
|
25 | - * @var string $_type |
|
26 | - */ |
|
27 | - protected $_type; |
|
22 | + /** |
|
23 | + * Type OID. |
|
24 | + * |
|
25 | + * @var string $_type |
|
26 | + */ |
|
27 | + protected $_type; |
|
28 | 28 | |
29 | - /** |
|
30 | - * Value. |
|
31 | - * |
|
32 | - * @var Element $_element |
|
33 | - */ |
|
34 | - protected $_element; |
|
29 | + /** |
|
30 | + * Value. |
|
31 | + * |
|
32 | + * @var Element $_element |
|
33 | + */ |
|
34 | + protected $_element; |
|
35 | 35 | |
36 | - /** |
|
37 | - * Constructor. |
|
38 | - * |
|
39 | - * @param string $type_id OID |
|
40 | - * @param Element $el |
|
41 | - */ |
|
42 | - public function __construct(string $type_id, Element $el) |
|
43 | - { |
|
44 | - $this->_tag = self::TAG_OTHER_NAME; |
|
45 | - $this->_type = $type_id; |
|
46 | - $this->_element = $el; |
|
47 | - } |
|
36 | + /** |
|
37 | + * Constructor. |
|
38 | + * |
|
39 | + * @param string $type_id OID |
|
40 | + * @param Element $el |
|
41 | + */ |
|
42 | + public function __construct(string $type_id, Element $el) |
|
43 | + { |
|
44 | + $this->_tag = self::TAG_OTHER_NAME; |
|
45 | + $this->_type = $type_id; |
|
46 | + $this->_element = $el; |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * |
|
51 | - * @param UnspecifiedType $el |
|
52 | - * @return self |
|
53 | - */ |
|
54 | - public static function fromChosenASN1(UnspecifiedType $el): self |
|
55 | - { |
|
56 | - $seq = $el->asSequence(); |
|
57 | - $type_id = $seq->at(0) |
|
58 | - ->asObjectIdentifier() |
|
59 | - ->oid(); |
|
60 | - $value = $seq->getTagged(0) |
|
61 | - ->asExplicit() |
|
62 | - ->asElement(); |
|
63 | - return new self($type_id, $value); |
|
64 | - } |
|
49 | + /** |
|
50 | + * |
|
51 | + * @param UnspecifiedType $el |
|
52 | + * @return self |
|
53 | + */ |
|
54 | + public static function fromChosenASN1(UnspecifiedType $el): self |
|
55 | + { |
|
56 | + $seq = $el->asSequence(); |
|
57 | + $type_id = $seq->at(0) |
|
58 | + ->asObjectIdentifier() |
|
59 | + ->oid(); |
|
60 | + $value = $seq->getTagged(0) |
|
61 | + ->asExplicit() |
|
62 | + ->asElement(); |
|
63 | + return new self($type_id, $value); |
|
64 | + } |
|
65 | 65 | |
66 | - /** |
|
67 | - * |
|
68 | - * {@inheritdoc} |
|
69 | - */ |
|
70 | - public function string(): string |
|
71 | - { |
|
72 | - return $this->_type . "/#" . bin2hex($this->_element->toDER()); |
|
73 | - } |
|
66 | + /** |
|
67 | + * |
|
68 | + * {@inheritdoc} |
|
69 | + */ |
|
70 | + public function string(): string |
|
71 | + { |
|
72 | + return $this->_type . "/#" . bin2hex($this->_element->toDER()); |
|
73 | + } |
|
74 | 74 | |
75 | - /** |
|
76 | - * Get type OID. |
|
77 | - * |
|
78 | - * @return string |
|
79 | - */ |
|
80 | - public function type(): string |
|
81 | - { |
|
82 | - return $this->_type; |
|
83 | - } |
|
75 | + /** |
|
76 | + * Get type OID. |
|
77 | + * |
|
78 | + * @return string |
|
79 | + */ |
|
80 | + public function type(): string |
|
81 | + { |
|
82 | + return $this->_type; |
|
83 | + } |
|
84 | 84 | |
85 | - /** |
|
86 | - * Get value element. |
|
87 | - * |
|
88 | - * @return Element |
|
89 | - */ |
|
90 | - public function value(): Element |
|
91 | - { |
|
92 | - return $this->_element; |
|
93 | - } |
|
85 | + /** |
|
86 | + * Get value element. |
|
87 | + * |
|
88 | + * @return Element |
|
89 | + */ |
|
90 | + public function value(): Element |
|
91 | + { |
|
92 | + return $this->_element; |
|
93 | + } |
|
94 | 94 | |
95 | - /** |
|
96 | - * |
|
97 | - * {@inheritdoc} |
|
98 | - */ |
|
99 | - protected function _choiceASN1(): TaggedType |
|
100 | - { |
|
101 | - return new ImplicitlyTaggedType($this->_tag, |
|
102 | - new Sequence(new ObjectIdentifier($this->_type), |
|
103 | - new ExplicitlyTaggedType(0, $this->_element))); |
|
104 | - } |
|
95 | + /** |
|
96 | + * |
|
97 | + * {@inheritdoc} |
|
98 | + */ |
|
99 | + protected function _choiceASN1(): TaggedType |
|
100 | + { |
|
101 | + return new ImplicitlyTaggedType($this->_tag, |
|
102 | + new Sequence(new ObjectIdentifier($this->_type), |
|
103 | + new ExplicitlyTaggedType(0, $this->_element))); |
|
104 | + } |
|
105 | 105 | } |
@@ -6,57 +6,57 @@ |
||
6 | 6 | |
7 | 7 | class IPv6Address extends IPAddress |
8 | 8 | { |
9 | - /** |
|
10 | - * Initialize from octets. |
|
11 | - * |
|
12 | - * @param string $octets |
|
13 | - * @throws \InvalidArgumentException |
|
14 | - * @return self |
|
15 | - */ |
|
16 | - public static function fromOctets(string $octets): self |
|
17 | - { |
|
18 | - $mask = null; |
|
19 | - $words = unpack("n*", $octets); |
|
20 | - switch (count($words)) { |
|
21 | - case 8: |
|
22 | - $ip = self::_wordsToIPv6String($words); |
|
23 | - break; |
|
24 | - case 16: |
|
25 | - $ip = self::_wordsToIPv6String(array_slice($words, 0, 8)); |
|
26 | - $mask = self::_wordsToIPv6String(array_slice($words, 8, 8)); |
|
27 | - break; |
|
28 | - default: |
|
29 | - throw new \UnexpectedValueException("Invalid IPv6 octet length."); |
|
30 | - } |
|
31 | - return new self($ip, $mask); |
|
32 | - } |
|
9 | + /** |
|
10 | + * Initialize from octets. |
|
11 | + * |
|
12 | + * @param string $octets |
|
13 | + * @throws \InvalidArgumentException |
|
14 | + * @return self |
|
15 | + */ |
|
16 | + public static function fromOctets(string $octets): self |
|
17 | + { |
|
18 | + $mask = null; |
|
19 | + $words = unpack("n*", $octets); |
|
20 | + switch (count($words)) { |
|
21 | + case 8: |
|
22 | + $ip = self::_wordsToIPv6String($words); |
|
23 | + break; |
|
24 | + case 16: |
|
25 | + $ip = self::_wordsToIPv6String(array_slice($words, 0, 8)); |
|
26 | + $mask = self::_wordsToIPv6String(array_slice($words, 8, 8)); |
|
27 | + break; |
|
28 | + default: |
|
29 | + throw new \UnexpectedValueException("Invalid IPv6 octet length."); |
|
30 | + } |
|
31 | + return new self($ip, $mask); |
|
32 | + } |
|
33 | 33 | |
34 | - /** |
|
35 | - * Convert an array of 16 bit words to an IPv6 string representation. |
|
36 | - * |
|
37 | - * @param int[] $words |
|
38 | - * @return string |
|
39 | - */ |
|
40 | - protected static function _wordsToIPv6String(array $words): string |
|
41 | - { |
|
42 | - $groups = array_map( |
|
43 | - function ($word) { |
|
44 | - return sprintf("%04x", $word); |
|
45 | - }, $words); |
|
46 | - return implode(":", $groups); |
|
47 | - } |
|
34 | + /** |
|
35 | + * Convert an array of 16 bit words to an IPv6 string representation. |
|
36 | + * |
|
37 | + * @param int[] $words |
|
38 | + * @return string |
|
39 | + */ |
|
40 | + protected static function _wordsToIPv6String(array $words): string |
|
41 | + { |
|
42 | + $groups = array_map( |
|
43 | + function ($word) { |
|
44 | + return sprintf("%04x", $word); |
|
45 | + }, $words); |
|
46 | + return implode(":", $groups); |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * |
|
51 | - * {@inheritdoc} |
|
52 | - */ |
|
53 | - protected function _octets(): string |
|
54 | - { |
|
55 | - $words = array_map("hexdec", explode(":", $this->_ip)); |
|
56 | - if (isset($this->_mask)) { |
|
57 | - $words = array_merge($words, |
|
58 | - array_map("hexdec", explode(":", $this->_mask))); |
|
59 | - } |
|
60 | - return pack("n*", ...$words); |
|
61 | - } |
|
49 | + /** |
|
50 | + * |
|
51 | + * {@inheritdoc} |
|
52 | + */ |
|
53 | + protected function _octets(): string |
|
54 | + { |
|
55 | + $words = array_map("hexdec", explode(":", $this->_ip)); |
|
56 | + if (isset($this->_mask)) { |
|
57 | + $words = array_merge($words, |
|
58 | + array_map("hexdec", explode(":", $this->_mask))); |
|
59 | + } |
|
60 | + return pack("n*", ...$words); |
|
61 | + } |
|
62 | 62 | } |
@@ -40,7 +40,7 @@ |
||
40 | 40 | protected static function _wordsToIPv6String(array $words): string |
41 | 41 | { |
42 | 42 | $groups = array_map( |
43 | - function ($word) { |
|
43 | + function($word) { |
|
44 | 44 | return sprintf("%04x", $word); |
45 | 45 | }, $words); |
46 | 46 | return implode(":", $groups); |
@@ -17,59 +17,59 @@ |
||
17 | 17 | */ |
18 | 18 | class UniformResourceIdentifier extends GeneralName |
19 | 19 | { |
20 | - /** |
|
21 | - * URI. |
|
22 | - * |
|
23 | - * @var string $_uri |
|
24 | - */ |
|
25 | - protected $_uri; |
|
20 | + /** |
|
21 | + * URI. |
|
22 | + * |
|
23 | + * @var string $_uri |
|
24 | + */ |
|
25 | + protected $_uri; |
|
26 | 26 | |
27 | - /** |
|
28 | - * Constructor. |
|
29 | - * |
|
30 | - * @param string $uri |
|
31 | - */ |
|
32 | - public function __construct(string $uri) |
|
33 | - { |
|
34 | - $this->_tag = self::TAG_URI; |
|
35 | - $this->_uri = $uri; |
|
36 | - } |
|
27 | + /** |
|
28 | + * Constructor. |
|
29 | + * |
|
30 | + * @param string $uri |
|
31 | + */ |
|
32 | + public function __construct(string $uri) |
|
33 | + { |
|
34 | + $this->_tag = self::TAG_URI; |
|
35 | + $this->_uri = $uri; |
|
36 | + } |
|
37 | 37 | |
38 | - /** |
|
39 | - * |
|
40 | - * @param UnspecifiedType $el |
|
41 | - * @return self |
|
42 | - */ |
|
43 | - public static function fromChosenASN1(UnspecifiedType $el): self |
|
44 | - { |
|
45 | - return new self($el->asIA5String()->string()); |
|
46 | - } |
|
38 | + /** |
|
39 | + * |
|
40 | + * @param UnspecifiedType $el |
|
41 | + * @return self |
|
42 | + */ |
|
43 | + public static function fromChosenASN1(UnspecifiedType $el): self |
|
44 | + { |
|
45 | + return new self($el->asIA5String()->string()); |
|
46 | + } |
|
47 | 47 | |
48 | - /** |
|
49 | - * |
|
50 | - * {@inheritdoc} |
|
51 | - */ |
|
52 | - public function string(): string |
|
53 | - { |
|
54 | - return $this->_uri; |
|
55 | - } |
|
48 | + /** |
|
49 | + * |
|
50 | + * {@inheritdoc} |
|
51 | + */ |
|
52 | + public function string(): string |
|
53 | + { |
|
54 | + return $this->_uri; |
|
55 | + } |
|
56 | 56 | |
57 | - /** |
|
58 | - * Get URI. |
|
59 | - * |
|
60 | - * @return string |
|
61 | - */ |
|
62 | - public function uri(): string |
|
63 | - { |
|
64 | - return $this->_uri; |
|
65 | - } |
|
57 | + /** |
|
58 | + * Get URI. |
|
59 | + * |
|
60 | + * @return string |
|
61 | + */ |
|
62 | + public function uri(): string |
|
63 | + { |
|
64 | + return $this->_uri; |
|
65 | + } |
|
66 | 66 | |
67 | - /** |
|
68 | - * |
|
69 | - * {@inheritdoc} |
|
70 | - */ |
|
71 | - protected function _choiceASN1(): TaggedType |
|
72 | - { |
|
73 | - return new ImplicitlyTaggedType($this->_tag, new IA5String($this->_uri)); |
|
74 | - } |
|
67 | + /** |
|
68 | + * |
|
69 | + * {@inheritdoc} |
|
70 | + */ |
|
71 | + protected function _choiceASN1(): TaggedType |
|
72 | + { |
|
73 | + return new ImplicitlyTaggedType($this->_tag, new IA5String($this->_uri)); |
|
74 | + } |
|
75 | 75 | } |
@@ -16,60 +16,60 @@ |
||
16 | 16 | */ |
17 | 17 | class RegisteredID extends GeneralName |
18 | 18 | { |
19 | - /** |
|
20 | - * Object identifier. |
|
21 | - * |
|
22 | - * @var string $_oid |
|
23 | - */ |
|
24 | - protected $_oid; |
|
19 | + /** |
|
20 | + * Object identifier. |
|
21 | + * |
|
22 | + * @var string $_oid |
|
23 | + */ |
|
24 | + protected $_oid; |
|
25 | 25 | |
26 | - /** |
|
27 | - * Constructor. |
|
28 | - * |
|
29 | - * @param string $oid OID in dotted format |
|
30 | - */ |
|
31 | - public function __construct(string $oid) |
|
32 | - { |
|
33 | - $this->_tag = self::TAG_REGISTERED_ID; |
|
34 | - $this->_oid = $oid; |
|
35 | - } |
|
26 | + /** |
|
27 | + * Constructor. |
|
28 | + * |
|
29 | + * @param string $oid OID in dotted format |
|
30 | + */ |
|
31 | + public function __construct(string $oid) |
|
32 | + { |
|
33 | + $this->_tag = self::TAG_REGISTERED_ID; |
|
34 | + $this->_oid = $oid; |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * |
|
39 | - * @param UnspecifiedType $el |
|
40 | - * @return self |
|
41 | - */ |
|
42 | - public static function fromChosenASN1(UnspecifiedType $el): self |
|
43 | - { |
|
44 | - return new self($el->asObjectIdentifier()->oid()); |
|
45 | - } |
|
37 | + /** |
|
38 | + * |
|
39 | + * @param UnspecifiedType $el |
|
40 | + * @return self |
|
41 | + */ |
|
42 | + public static function fromChosenASN1(UnspecifiedType $el): self |
|
43 | + { |
|
44 | + return new self($el->asObjectIdentifier()->oid()); |
|
45 | + } |
|
46 | 46 | |
47 | - /** |
|
48 | - * |
|
49 | - * {@inheritdoc} |
|
50 | - */ |
|
51 | - public function string(): string |
|
52 | - { |
|
53 | - return $this->_oid; |
|
54 | - } |
|
47 | + /** |
|
48 | + * |
|
49 | + * {@inheritdoc} |
|
50 | + */ |
|
51 | + public function string(): string |
|
52 | + { |
|
53 | + return $this->_oid; |
|
54 | + } |
|
55 | 55 | |
56 | - /** |
|
57 | - * Get object identifier in dotted format. |
|
58 | - * |
|
59 | - * @return string OID |
|
60 | - */ |
|
61 | - public function oid(): string |
|
62 | - { |
|
63 | - return $this->_oid; |
|
64 | - } |
|
56 | + /** |
|
57 | + * Get object identifier in dotted format. |
|
58 | + * |
|
59 | + * @return string OID |
|
60 | + */ |
|
61 | + public function oid(): string |
|
62 | + { |
|
63 | + return $this->_oid; |
|
64 | + } |
|
65 | 65 | |
66 | - /** |
|
67 | - * |
|
68 | - * {@inheritdoc} |
|
69 | - */ |
|
70 | - protected function _choiceASN1(): TaggedType |
|
71 | - { |
|
72 | - return new ImplicitlyTaggedType($this->_tag, |
|
73 | - new ObjectIdentifier($this->_oid)); |
|
74 | - } |
|
66 | + /** |
|
67 | + * |
|
68 | + * {@inheritdoc} |
|
69 | + */ |
|
70 | + protected function _choiceASN1(): TaggedType |
|
71 | + { |
|
72 | + return new ImplicitlyTaggedType($this->_tag, |
|
73 | + new ObjectIdentifier($this->_oid)); |
|
74 | + } |
|
75 | 75 | } |
@@ -19,97 +19,97 @@ |
||
19 | 19 | */ |
20 | 20 | abstract class IPAddress extends GeneralName |
21 | 21 | { |
22 | - /** |
|
23 | - * IP address. |
|
24 | - * |
|
25 | - * @var string $_ip |
|
26 | - */ |
|
27 | - protected $_ip; |
|
22 | + /** |
|
23 | + * IP address. |
|
24 | + * |
|
25 | + * @var string $_ip |
|
26 | + */ |
|
27 | + protected $_ip; |
|
28 | 28 | |
29 | - /** |
|
30 | - * Subnet mask. |
|
31 | - * |
|
32 | - * @var string|null $_mask |
|
33 | - */ |
|
34 | - protected $_mask; |
|
29 | + /** |
|
30 | + * Subnet mask. |
|
31 | + * |
|
32 | + * @var string|null $_mask |
|
33 | + */ |
|
34 | + protected $_mask; |
|
35 | 35 | |
36 | - /** |
|
37 | - * Get octet representation of the IP address. |
|
38 | - * |
|
39 | - * @return string |
|
40 | - */ |
|
41 | - abstract protected function _octets(); |
|
36 | + /** |
|
37 | + * Get octet representation of the IP address. |
|
38 | + * |
|
39 | + * @return string |
|
40 | + */ |
|
41 | + abstract protected function _octets(); |
|
42 | 42 | |
43 | - /** |
|
44 | - * Constructor. |
|
45 | - * |
|
46 | - * @param string $ip |
|
47 | - * @param string|null $mask |
|
48 | - */ |
|
49 | - public function __construct(string $ip, $mask = null) |
|
50 | - { |
|
51 | - $this->_tag = self::TAG_IP_ADDRESS; |
|
52 | - $this->_ip = $ip; |
|
53 | - $this->_mask = $mask; |
|
54 | - } |
|
43 | + /** |
|
44 | + * Constructor. |
|
45 | + * |
|
46 | + * @param string $ip |
|
47 | + * @param string|null $mask |
|
48 | + */ |
|
49 | + public function __construct(string $ip, $mask = null) |
|
50 | + { |
|
51 | + $this->_tag = self::TAG_IP_ADDRESS; |
|
52 | + $this->_ip = $ip; |
|
53 | + $this->_mask = $mask; |
|
54 | + } |
|
55 | 55 | |
56 | - /** |
|
57 | - * |
|
58 | - * @param UnspecifiedType $el |
|
59 | - * @return self |
|
60 | - */ |
|
61 | - public static function fromChosenASN1(UnspecifiedType $el): self |
|
62 | - { |
|
63 | - $octets = $el->asOctetString()->string(); |
|
64 | - switch (strlen($octets)) { |
|
65 | - case 4: |
|
66 | - case 8: |
|
67 | - return IPv4Address::fromOctets($octets); |
|
68 | - case 16: |
|
69 | - case 32: |
|
70 | - return IPv6Address::fromOctets($octets); |
|
71 | - default: |
|
72 | - throw new \UnexpectedValueException( |
|
73 | - "Invalid octet length for IP address."); |
|
74 | - } |
|
75 | - } |
|
56 | + /** |
|
57 | + * |
|
58 | + * @param UnspecifiedType $el |
|
59 | + * @return self |
|
60 | + */ |
|
61 | + public static function fromChosenASN1(UnspecifiedType $el): self |
|
62 | + { |
|
63 | + $octets = $el->asOctetString()->string(); |
|
64 | + switch (strlen($octets)) { |
|
65 | + case 4: |
|
66 | + case 8: |
|
67 | + return IPv4Address::fromOctets($octets); |
|
68 | + case 16: |
|
69 | + case 32: |
|
70 | + return IPv6Address::fromOctets($octets); |
|
71 | + default: |
|
72 | + throw new \UnexpectedValueException( |
|
73 | + "Invalid octet length for IP address."); |
|
74 | + } |
|
75 | + } |
|
76 | 76 | |
77 | - /** |
|
78 | - * |
|
79 | - * {@inheritdoc} |
|
80 | - */ |
|
81 | - public function string(): string |
|
82 | - { |
|
83 | - return $this->_ip . (isset($this->_mask) ? "/" . $this->_mask : ""); |
|
84 | - } |
|
77 | + /** |
|
78 | + * |
|
79 | + * {@inheritdoc} |
|
80 | + */ |
|
81 | + public function string(): string |
|
82 | + { |
|
83 | + return $this->_ip . (isset($this->_mask) ? "/" . $this->_mask : ""); |
|
84 | + } |
|
85 | 85 | |
86 | - /** |
|
87 | - * Get IP address as a string. |
|
88 | - * |
|
89 | - * @return string |
|
90 | - */ |
|
91 | - public function address(): string |
|
92 | - { |
|
93 | - return $this->_ip; |
|
94 | - } |
|
86 | + /** |
|
87 | + * Get IP address as a string. |
|
88 | + * |
|
89 | + * @return string |
|
90 | + */ |
|
91 | + public function address(): string |
|
92 | + { |
|
93 | + return $this->_ip; |
|
94 | + } |
|
95 | 95 | |
96 | - /** |
|
97 | - * Get subnet mask as a string. |
|
98 | - * |
|
99 | - * @return string |
|
100 | - */ |
|
101 | - public function mask(): string |
|
102 | - { |
|
103 | - return $this->_mask; |
|
104 | - } |
|
96 | + /** |
|
97 | + * Get subnet mask as a string. |
|
98 | + * |
|
99 | + * @return string |
|
100 | + */ |
|
101 | + public function mask(): string |
|
102 | + { |
|
103 | + return $this->_mask; |
|
104 | + } |
|
105 | 105 | |
106 | - /** |
|
107 | - * |
|
108 | - * {@inheritdoc} |
|
109 | - */ |
|
110 | - protected function _choiceASN1(): TaggedType |
|
111 | - { |
|
112 | - return new ImplicitlyTaggedType($this->_tag, |
|
113 | - new OctetString($this->_octets())); |
|
114 | - } |
|
106 | + /** |
|
107 | + * |
|
108 | + * {@inheritdoc} |
|
109 | + */ |
|
110 | + protected function _choiceASN1(): TaggedType |
|
111 | + { |
|
112 | + return new ImplicitlyTaggedType($this->_tag, |
|
113 | + new OctetString($this->_octets())); |
|
114 | + } |
|
115 | 115 | } |
@@ -16,72 +16,72 @@ |
||
16 | 16 | */ |
17 | 17 | class DirectoryName extends GeneralName |
18 | 18 | { |
19 | - /** |
|
20 | - * Directory name. |
|
21 | - * |
|
22 | - * @var Name $_dn |
|
23 | - */ |
|
24 | - protected $_dn; |
|
19 | + /** |
|
20 | + * Directory name. |
|
21 | + * |
|
22 | + * @var Name $_dn |
|
23 | + */ |
|
24 | + protected $_dn; |
|
25 | 25 | |
26 | - /** |
|
27 | - * Constructor. |
|
28 | - * |
|
29 | - * @param Name $dn |
|
30 | - */ |
|
31 | - public function __construct(Name $dn) |
|
32 | - { |
|
33 | - $this->_tag = self::TAG_DIRECTORY_NAME; |
|
34 | - $this->_dn = $dn; |
|
35 | - } |
|
26 | + /** |
|
27 | + * Constructor. |
|
28 | + * |
|
29 | + * @param Name $dn |
|
30 | + */ |
|
31 | + public function __construct(Name $dn) |
|
32 | + { |
|
33 | + $this->_tag = self::TAG_DIRECTORY_NAME; |
|
34 | + $this->_dn = $dn; |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * |
|
39 | - * @param UnspecifiedType $el |
|
40 | - * @return self |
|
41 | - */ |
|
42 | - public static function fromChosenASN1(UnspecifiedType $el): self |
|
43 | - { |
|
44 | - return new self(Name::fromASN1($el->asSequence())); |
|
45 | - } |
|
37 | + /** |
|
38 | + * |
|
39 | + * @param UnspecifiedType $el |
|
40 | + * @return self |
|
41 | + */ |
|
42 | + public static function fromChosenASN1(UnspecifiedType $el): self |
|
43 | + { |
|
44 | + return new self(Name::fromASN1($el->asSequence())); |
|
45 | + } |
|
46 | 46 | |
47 | - /** |
|
48 | - * Initialize from distinguished name string. |
|
49 | - * |
|
50 | - * @param string $str |
|
51 | - * @return self |
|
52 | - */ |
|
53 | - public static function fromDNString(string $str): self |
|
54 | - { |
|
55 | - return new self(Name::fromString($str)); |
|
56 | - } |
|
47 | + /** |
|
48 | + * Initialize from distinguished name string. |
|
49 | + * |
|
50 | + * @param string $str |
|
51 | + * @return self |
|
52 | + */ |
|
53 | + public static function fromDNString(string $str): self |
|
54 | + { |
|
55 | + return new self(Name::fromString($str)); |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * |
|
60 | - * {@inheritdoc} |
|
61 | - */ |
|
62 | - public function string(): string |
|
63 | - { |
|
64 | - return $this->_dn->toString(); |
|
65 | - } |
|
58 | + /** |
|
59 | + * |
|
60 | + * {@inheritdoc} |
|
61 | + */ |
|
62 | + public function string(): string |
|
63 | + { |
|
64 | + return $this->_dn->toString(); |
|
65 | + } |
|
66 | 66 | |
67 | - /** |
|
68 | - * Get directory name. |
|
69 | - * |
|
70 | - * @return Name |
|
71 | - */ |
|
72 | - public function dn(): Name |
|
73 | - { |
|
74 | - return $this->_dn; |
|
75 | - } |
|
67 | + /** |
|
68 | + * Get directory name. |
|
69 | + * |
|
70 | + * @return Name |
|
71 | + */ |
|
72 | + public function dn(): Name |
|
73 | + { |
|
74 | + return $this->_dn; |
|
75 | + } |
|
76 | 76 | |
77 | - /** |
|
78 | - * |
|
79 | - * {@inheritdoc} |
|
80 | - */ |
|
81 | - protected function _choiceASN1(): TaggedType |
|
82 | - { |
|
83 | - // Name type is itself a CHOICE, so explicit tagging must be |
|
84 | - // employed to avoid ambiguities |
|
85 | - return new ExplicitlyTaggedType($this->_tag, $this->_dn->toASN1()); |
|
86 | - } |
|
77 | + /** |
|
78 | + * |
|
79 | + * {@inheritdoc} |
|
80 | + */ |
|
81 | + protected function _choiceASN1(): TaggedType |
|
82 | + { |
|
83 | + // Name type is itself a CHOICE, so explicit tagging must be |
|
84 | + // employed to avoid ambiguities |
|
85 | + return new ExplicitlyTaggedType($this->_tag, $this->_dn->toASN1()); |
|
86 | + } |
|
87 | 87 | } |
@@ -16,59 +16,59 @@ |
||
16 | 16 | */ |
17 | 17 | class DNSName extends GeneralName |
18 | 18 | { |
19 | - /** |
|
20 | - * DNS name. |
|
21 | - * |
|
22 | - * @var string |
|
23 | - */ |
|
24 | - protected $_name; |
|
19 | + /** |
|
20 | + * DNS name. |
|
21 | + * |
|
22 | + * @var string |
|
23 | + */ |
|
24 | + protected $_name; |
|
25 | 25 | |
26 | - /** |
|
27 | - * Constructor. |
|
28 | - * |
|
29 | - * @param string $name Domain name |
|
30 | - */ |
|
31 | - public function __construct(string $name) |
|
32 | - { |
|
33 | - $this->_tag = self::TAG_DNS_NAME; |
|
34 | - $this->_name = $name; |
|
35 | - } |
|
26 | + /** |
|
27 | + * Constructor. |
|
28 | + * |
|
29 | + * @param string $name Domain name |
|
30 | + */ |
|
31 | + public function __construct(string $name) |
|
32 | + { |
|
33 | + $this->_tag = self::TAG_DNS_NAME; |
|
34 | + $this->_name = $name; |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * |
|
39 | - * @param UnspecifiedType $el |
|
40 | - * @return self |
|
41 | - */ |
|
42 | - public static function fromChosenASN1(UnspecifiedType $el): self |
|
43 | - { |
|
44 | - return new self($el->asIA5String()->string()); |
|
45 | - } |
|
37 | + /** |
|
38 | + * |
|
39 | + * @param UnspecifiedType $el |
|
40 | + * @return self |
|
41 | + */ |
|
42 | + public static function fromChosenASN1(UnspecifiedType $el): self |
|
43 | + { |
|
44 | + return new self($el->asIA5String()->string()); |
|
45 | + } |
|
46 | 46 | |
47 | - /** |
|
48 | - * |
|
49 | - * {@inheritdoc} |
|
50 | - */ |
|
51 | - public function string(): string |
|
52 | - { |
|
53 | - return $this->_name; |
|
54 | - } |
|
47 | + /** |
|
48 | + * |
|
49 | + * {@inheritdoc} |
|
50 | + */ |
|
51 | + public function string(): string |
|
52 | + { |
|
53 | + return $this->_name; |
|
54 | + } |
|
55 | 55 | |
56 | - /** |
|
57 | - * Get DNS name. |
|
58 | - * |
|
59 | - * @return string |
|
60 | - */ |
|
61 | - public function name(): string |
|
62 | - { |
|
63 | - return $this->_name; |
|
64 | - } |
|
56 | + /** |
|
57 | + * Get DNS name. |
|
58 | + * |
|
59 | + * @return string |
|
60 | + */ |
|
61 | + public function name(): string |
|
62 | + { |
|
63 | + return $this->_name; |
|
64 | + } |
|
65 | 65 | |
66 | - /** |
|
67 | - * |
|
68 | - * {@inheritdoc} |
|
69 | - */ |
|
70 | - protected function _choiceASN1(): TaggedType |
|
71 | - { |
|
72 | - return new ImplicitlyTaggedType($this->_tag, new IA5String($this->_name)); |
|
73 | - } |
|
66 | + /** |
|
67 | + * |
|
68 | + * {@inheritdoc} |
|
69 | + */ |
|
70 | + protected function _choiceASN1(): TaggedType |
|
71 | + { |
|
72 | + return new ImplicitlyTaggedType($this->_tag, new IA5String($this->_name)); |
|
73 | + } |
|
74 | 74 | } |
@@ -18,47 +18,47 @@ |
||
18 | 18 | */ |
19 | 19 | class X400Address extends GeneralName |
20 | 20 | { |
21 | - /** |
|
22 | - * |
|
23 | - * @var \ASN1\Element |
|
24 | - */ |
|
25 | - protected $_element; |
|
21 | + /** |
|
22 | + * |
|
23 | + * @var \ASN1\Element |
|
24 | + */ |
|
25 | + protected $_element; |
|
26 | 26 | |
27 | - /** |
|
28 | - * Constructor. |
|
29 | - */ |
|
30 | - protected function __construct() |
|
31 | - { |
|
32 | - $this->_tag = self::TAG_X400_ADDRESS; |
|
33 | - } |
|
27 | + /** |
|
28 | + * Constructor. |
|
29 | + */ |
|
30 | + protected function __construct() |
|
31 | + { |
|
32 | + $this->_tag = self::TAG_X400_ADDRESS; |
|
33 | + } |
|
34 | 34 | |
35 | - /** |
|
36 | - * |
|
37 | - * @param UnspecifiedType $el |
|
38 | - * @return self |
|
39 | - */ |
|
40 | - public static function fromChosenASN1(UnspecifiedType $el): self |
|
41 | - { |
|
42 | - $obj = new self(); |
|
43 | - $obj->_element = $el->asSequence(); |
|
44 | - return $obj; |
|
45 | - } |
|
35 | + /** |
|
36 | + * |
|
37 | + * @param UnspecifiedType $el |
|
38 | + * @return self |
|
39 | + */ |
|
40 | + public static function fromChosenASN1(UnspecifiedType $el): self |
|
41 | + { |
|
42 | + $obj = new self(); |
|
43 | + $obj->_element = $el->asSequence(); |
|
44 | + return $obj; |
|
45 | + } |
|
46 | 46 | |
47 | - /** |
|
48 | - * |
|
49 | - * {@inheritdoc} |
|
50 | - */ |
|
51 | - public function string(): string |
|
52 | - { |
|
53 | - return bin2hex($this->_element->toDER()); |
|
54 | - } |
|
47 | + /** |
|
48 | + * |
|
49 | + * {@inheritdoc} |
|
50 | + */ |
|
51 | + public function string(): string |
|
52 | + { |
|
53 | + return bin2hex($this->_element->toDER()); |
|
54 | + } |
|
55 | 55 | |
56 | - /** |
|
57 | - * |
|
58 | - * {@inheritdoc} |
|
59 | - */ |
|
60 | - protected function _choiceASN1(): TaggedType |
|
61 | - { |
|
62 | - return new ImplicitlyTaggedType($this->_tag, $this->_element); |
|
63 | - } |
|
56 | + /** |
|
57 | + * |
|
58 | + * {@inheritdoc} |
|
59 | + */ |
|
60 | + protected function _choiceASN1(): TaggedType |
|
61 | + { |
|
62 | + return new ImplicitlyTaggedType($this->_tag, $this->_element); |
|
63 | + } |
|
64 | 64 | } |
@@ -13,72 +13,72 @@ |
||
13 | 13 | */ |
14 | 14 | class UniqueIdentifier |
15 | 15 | { |
16 | - /** |
|
17 | - * Identifier. |
|
18 | - * |
|
19 | - * @var BitString $_uid |
|
20 | - */ |
|
21 | - protected $_uid; |
|
16 | + /** |
|
17 | + * Identifier. |
|
18 | + * |
|
19 | + * @var BitString $_uid |
|
20 | + */ |
|
21 | + protected $_uid; |
|
22 | 22 | |
23 | - /** |
|
24 | - * Constructor. |
|
25 | - * |
|
26 | - * @param BitString $bs |
|
27 | - */ |
|
28 | - public function __construct(BitString $bs) |
|
29 | - { |
|
30 | - $this->_uid = $bs; |
|
31 | - } |
|
23 | + /** |
|
24 | + * Constructor. |
|
25 | + * |
|
26 | + * @param BitString $bs |
|
27 | + */ |
|
28 | + public function __construct(BitString $bs) |
|
29 | + { |
|
30 | + $this->_uid = $bs; |
|
31 | + } |
|
32 | 32 | |
33 | - /** |
|
34 | - * Initialize from ASN.1. |
|
35 | - * |
|
36 | - * @param BitString $bs |
|
37 | - * @return self |
|
38 | - */ |
|
39 | - public static function fromASN1(BitString $bs): self |
|
40 | - { |
|
41 | - return new self($bs); |
|
42 | - } |
|
33 | + /** |
|
34 | + * Initialize from ASN.1. |
|
35 | + * |
|
36 | + * @param BitString $bs |
|
37 | + * @return self |
|
38 | + */ |
|
39 | + public static function fromASN1(BitString $bs): self |
|
40 | + { |
|
41 | + return new self($bs); |
|
42 | + } |
|
43 | 43 | |
44 | - /** |
|
45 | - * Initialize from string. |
|
46 | - * |
|
47 | - * @param string $str |
|
48 | - * @return self |
|
49 | - */ |
|
50 | - public static function fromString(string $str): self |
|
51 | - { |
|
52 | - return new self(new BitString($str)); |
|
53 | - } |
|
44 | + /** |
|
45 | + * Initialize from string. |
|
46 | + * |
|
47 | + * @param string $str |
|
48 | + * @return self |
|
49 | + */ |
|
50 | + public static function fromString(string $str): self |
|
51 | + { |
|
52 | + return new self(new BitString($str)); |
|
53 | + } |
|
54 | 54 | |
55 | - /** |
|
56 | - * Get unique identifier as a string. |
|
57 | - * |
|
58 | - * @return string |
|
59 | - */ |
|
60 | - public function string(): string |
|
61 | - { |
|
62 | - return $this->_uid->string(); |
|
63 | - } |
|
55 | + /** |
|
56 | + * Get unique identifier as a string. |
|
57 | + * |
|
58 | + * @return string |
|
59 | + */ |
|
60 | + public function string(): string |
|
61 | + { |
|
62 | + return $this->_uid->string(); |
|
63 | + } |
|
64 | 64 | |
65 | - /** |
|
66 | - * Get unique identifier as a bit string. |
|
67 | - * |
|
68 | - * @return BitString |
|
69 | - */ |
|
70 | - public function bitString(): BitString |
|
71 | - { |
|
72 | - return $this->_uid; |
|
73 | - } |
|
65 | + /** |
|
66 | + * Get unique identifier as a bit string. |
|
67 | + * |
|
68 | + * @return BitString |
|
69 | + */ |
|
70 | + public function bitString(): BitString |
|
71 | + { |
|
72 | + return $this->_uid; |
|
73 | + } |
|
74 | 74 | |
75 | - /** |
|
76 | - * Get ASN.1 element. |
|
77 | - * |
|
78 | - * @return BitString |
|
79 | - */ |
|
80 | - public function toASN1(): BitString |
|
81 | - { |
|
82 | - return $this->_uid; |
|
83 | - } |
|
75 | + /** |
|
76 | + * Get ASN.1 element. |
|
77 | + * |
|
78 | + * @return BitString |
|
79 | + */ |
|
80 | + public function toASN1(): BitString |
|
81 | + { |
|
82 | + return $this->_uid; |
|
83 | + } |
|
84 | 84 | } |