@@ -13,15 +13,15 @@ |
||
13 | 13 | */ |
14 | 14 | interface ImplicitTagging extends ElementBase |
15 | 15 | { |
16 | - /** |
|
17 | - * Get implicitly tagged wrapped element. |
|
18 | - * |
|
19 | - * @param int $tag Tag of the element |
|
20 | - * @param int $class Expected type class of the element |
|
21 | - * |
|
22 | - * @throws \UnexpectedValueException If expectation fails |
|
23 | - * |
|
24 | - * @return \Sop\ASN1\Type\UnspecifiedType |
|
25 | - */ |
|
26 | - public function implicit(int $tag, int $class = Identifier::CLASS_UNIVERSAL): UnspecifiedType; |
|
16 | + /** |
|
17 | + * Get implicitly tagged wrapped element. |
|
18 | + * |
|
19 | + * @param int $tag Tag of the element |
|
20 | + * @param int $class Expected type class of the element |
|
21 | + * |
|
22 | + * @throws \UnexpectedValueException If expectation fails |
|
23 | + * |
|
24 | + * @return \Sop\ASN1\Type\UnspecifiedType |
|
25 | + */ |
|
26 | + public function implicit(int $tag, int $class = Identifier::CLASS_UNIVERSAL): UnspecifiedType; |
|
27 | 27 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Tagged; |
6 | 6 |
@@ -17,52 +17,52 @@ |
||
17 | 17 | */ |
18 | 18 | class ImplicitlyTaggedType extends TaggedTypeWrap implements ImplicitTagging |
19 | 19 | { |
20 | - /** |
|
21 | - * Constructor. |
|
22 | - * |
|
23 | - * @param int $tag Tag number |
|
24 | - * @param Element $element Wrapped element |
|
25 | - * @param int $class Type class |
|
26 | - */ |
|
27 | - public function __construct(int $tag, Element $element, |
|
28 | - int $class = Identifier::CLASS_CONTEXT_SPECIFIC) |
|
29 | - { |
|
30 | - $this->_typeTag = $tag; |
|
31 | - $this->_element = $element; |
|
32 | - $this->_class = $class; |
|
33 | - } |
|
20 | + /** |
|
21 | + * Constructor. |
|
22 | + * |
|
23 | + * @param int $tag Tag number |
|
24 | + * @param Element $element Wrapped element |
|
25 | + * @param int $class Type class |
|
26 | + */ |
|
27 | + public function __construct(int $tag, Element $element, |
|
28 | + int $class = Identifier::CLASS_CONTEXT_SPECIFIC) |
|
29 | + { |
|
30 | + $this->_typeTag = $tag; |
|
31 | + $this->_element = $element; |
|
32 | + $this->_class = $class; |
|
33 | + } |
|
34 | 34 | |
35 | - /** |
|
36 | - * {@inheritdoc} |
|
37 | - */ |
|
38 | - public function isConstructed(): bool |
|
39 | - { |
|
40 | - // depends on the underlying type |
|
41 | - return $this->_element->isConstructed(); |
|
42 | - } |
|
35 | + /** |
|
36 | + * {@inheritdoc} |
|
37 | + */ |
|
38 | + public function isConstructed(): bool |
|
39 | + { |
|
40 | + // depends on the underlying type |
|
41 | + return $this->_element->isConstructed(); |
|
42 | + } |
|
43 | 43 | |
44 | - /** |
|
45 | - * {@inheritdoc} |
|
46 | - */ |
|
47 | - public function implicit( |
|
48 | - int $tag, int $class = Identifier::CLASS_UNIVERSAL): UnspecifiedType |
|
49 | - { |
|
50 | - $this->_element->expectType($tag); |
|
51 | - if ($this->_element->typeClass() != $class) { |
|
52 | - throw new \UnexpectedValueException( |
|
53 | - sprintf('Type class %s expected, got %s.', |
|
54 | - Identifier::classToName($class), |
|
55 | - Identifier::classToName($this->_element->typeClass()))); |
|
56 | - } |
|
57 | - return $this->_element->asUnspecified(); |
|
58 | - } |
|
44 | + /** |
|
45 | + * {@inheritdoc} |
|
46 | + */ |
|
47 | + public function implicit( |
|
48 | + int $tag, int $class = Identifier::CLASS_UNIVERSAL): UnspecifiedType |
|
49 | + { |
|
50 | + $this->_element->expectType($tag); |
|
51 | + if ($this->_element->typeClass() != $class) { |
|
52 | + throw new \UnexpectedValueException( |
|
53 | + sprintf('Type class %s expected, got %s.', |
|
54 | + Identifier::classToName($class), |
|
55 | + Identifier::classToName($this->_element->typeClass()))); |
|
56 | + } |
|
57 | + return $this->_element->asUnspecified(); |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * {@inheritdoc} |
|
62 | - */ |
|
63 | - protected function _encodedContentDER(): string |
|
64 | - { |
|
65 | - // get only the content of the wrapped element. |
|
66 | - return $this->_element->_encodedContentDER(); |
|
67 | - } |
|
60 | + /** |
|
61 | + * {@inheritdoc} |
|
62 | + */ |
|
63 | + protected function _encodedContentDER(): string |
|
64 | + { |
|
65 | + // get only the content of the wrapped element. |
|
66 | + return $this->_element->_encodedContentDER(); |
|
67 | + } |
|
68 | 68 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Tagged; |
6 | 6 |
@@ -23,139 +23,139 @@ |
||
23 | 23 | */ |
24 | 24 | class DERTaggedType extends TaggedType implements ExplicitTagging, ImplicitTagging |
25 | 25 | { |
26 | - /** |
|
27 | - * Identifier. |
|
28 | - * |
|
29 | - * @var Identifier |
|
30 | - */ |
|
31 | - private $_identifier; |
|
26 | + /** |
|
27 | + * Identifier. |
|
28 | + * |
|
29 | + * @var Identifier |
|
30 | + */ |
|
31 | + private $_identifier; |
|
32 | 32 | |
33 | - /** |
|
34 | - * DER data. |
|
35 | - * |
|
36 | - * @var string |
|
37 | - */ |
|
38 | - private $_data; |
|
33 | + /** |
|
34 | + * DER data. |
|
35 | + * |
|
36 | + * @var string |
|
37 | + */ |
|
38 | + private $_data; |
|
39 | 39 | |
40 | - /** |
|
41 | - * Offset to next byte after identifier. |
|
42 | - * |
|
43 | - * @var int |
|
44 | - */ |
|
45 | - private $_offset; |
|
40 | + /** |
|
41 | + * Offset to next byte after identifier. |
|
42 | + * |
|
43 | + * @var int |
|
44 | + */ |
|
45 | + private $_offset; |
|
46 | 46 | |
47 | - /** |
|
48 | - * Offset to content. |
|
49 | - * |
|
50 | - * @var int |
|
51 | - */ |
|
52 | - private $_valueOffset; |
|
47 | + /** |
|
48 | + * Offset to content. |
|
49 | + * |
|
50 | + * @var int |
|
51 | + */ |
|
52 | + private $_valueOffset; |
|
53 | 53 | |
54 | - /** |
|
55 | - * Length of the content. |
|
56 | - * |
|
57 | - * @var int |
|
58 | - */ |
|
59 | - private $_valueLength; |
|
54 | + /** |
|
55 | + * Length of the content. |
|
56 | + * |
|
57 | + * @var int |
|
58 | + */ |
|
59 | + private $_valueLength; |
|
60 | 60 | |
61 | - /** |
|
62 | - * Constructor. |
|
63 | - * |
|
64 | - * @param Identifier $identifier Pre-parsed identifier |
|
65 | - * @param string $data DER data |
|
66 | - * @param int $offset Offset to next byte after identifier |
|
67 | - * @param int $value_offset Offset to content |
|
68 | - * @param int $value_length Content length |
|
69 | - */ |
|
70 | - public function __construct(Identifier $identifier, string $data, |
|
71 | - int $offset, int $value_offset, int $value_length, |
|
72 | - bool $indefinite_length) |
|
73 | - { |
|
74 | - $this->_identifier = $identifier; |
|
75 | - $this->_data = $data; |
|
76 | - $this->_offset = $offset; |
|
77 | - $this->_valueOffset = $value_offset; |
|
78 | - $this->_valueLength = $value_length; |
|
79 | - $this->_indefiniteLength = $indefinite_length; |
|
80 | - $this->_typeTag = $identifier->intTag(); |
|
81 | - } |
|
61 | + /** |
|
62 | + * Constructor. |
|
63 | + * |
|
64 | + * @param Identifier $identifier Pre-parsed identifier |
|
65 | + * @param string $data DER data |
|
66 | + * @param int $offset Offset to next byte after identifier |
|
67 | + * @param int $value_offset Offset to content |
|
68 | + * @param int $value_length Content length |
|
69 | + */ |
|
70 | + public function __construct(Identifier $identifier, string $data, |
|
71 | + int $offset, int $value_offset, int $value_length, |
|
72 | + bool $indefinite_length) |
|
73 | + { |
|
74 | + $this->_identifier = $identifier; |
|
75 | + $this->_data = $data; |
|
76 | + $this->_offset = $offset; |
|
77 | + $this->_valueOffset = $value_offset; |
|
78 | + $this->_valueLength = $value_length; |
|
79 | + $this->_indefiniteLength = $indefinite_length; |
|
80 | + $this->_typeTag = $identifier->intTag(); |
|
81 | + } |
|
82 | 82 | |
83 | - /** |
|
84 | - * {@inheritdoc} |
|
85 | - */ |
|
86 | - public function typeClass(): int |
|
87 | - { |
|
88 | - return $this->_identifier->typeClass(); |
|
89 | - } |
|
83 | + /** |
|
84 | + * {@inheritdoc} |
|
85 | + */ |
|
86 | + public function typeClass(): int |
|
87 | + { |
|
88 | + return $this->_identifier->typeClass(); |
|
89 | + } |
|
90 | 90 | |
91 | - /** |
|
92 | - * {@inheritdoc} |
|
93 | - */ |
|
94 | - public function isConstructed(): bool |
|
95 | - { |
|
96 | - return $this->_identifier->isConstructed(); |
|
97 | - } |
|
91 | + /** |
|
92 | + * {@inheritdoc} |
|
93 | + */ |
|
94 | + public function isConstructed(): bool |
|
95 | + { |
|
96 | + return $this->_identifier->isConstructed(); |
|
97 | + } |
|
98 | 98 | |
99 | - /** |
|
100 | - * {@inheritdoc} |
|
101 | - */ |
|
102 | - public function implicit(int $tag, int $class = Identifier::CLASS_UNIVERSAL): UnspecifiedType |
|
103 | - { |
|
104 | - $identifier = $this->_identifier->withClass($class)->withTag($tag); |
|
105 | - $cls = self::_determineImplClass($identifier); |
|
106 | - $idx = $this->_offset; |
|
107 | - /** @var \Sop\ASN1\Feature\ElementBase $element */ |
|
108 | - $element = $cls::_decodeFromDER($identifier, $this->_data, $idx); |
|
109 | - return $element->asUnspecified(); |
|
110 | - } |
|
99 | + /** |
|
100 | + * {@inheritdoc} |
|
101 | + */ |
|
102 | + public function implicit(int $tag, int $class = Identifier::CLASS_UNIVERSAL): UnspecifiedType |
|
103 | + { |
|
104 | + $identifier = $this->_identifier->withClass($class)->withTag($tag); |
|
105 | + $cls = self::_determineImplClass($identifier); |
|
106 | + $idx = $this->_offset; |
|
107 | + /** @var \Sop\ASN1\Feature\ElementBase $element */ |
|
108 | + $element = $cls::_decodeFromDER($identifier, $this->_data, $idx); |
|
109 | + return $element->asUnspecified(); |
|
110 | + } |
|
111 | 111 | |
112 | - /** |
|
113 | - * {@inheritdoc} |
|
114 | - */ |
|
115 | - public function explicit(?int $expectedTag = null): UnspecifiedType |
|
116 | - { |
|
117 | - $idx = $this->_valueOffset; |
|
118 | - $element = Element::fromDER($this->_data, $idx); |
|
119 | - if (isset($expectedTag)) { |
|
120 | - $element->expectType($expectedTag); |
|
121 | - } |
|
122 | - return $element->asUnspecified(); |
|
123 | - } |
|
112 | + /** |
|
113 | + * {@inheritdoc} |
|
114 | + */ |
|
115 | + public function explicit(?int $expectedTag = null): UnspecifiedType |
|
116 | + { |
|
117 | + $idx = $this->_valueOffset; |
|
118 | + $element = Element::fromDER($this->_data, $idx); |
|
119 | + if (isset($expectedTag)) { |
|
120 | + $element->expectType($expectedTag); |
|
121 | + } |
|
122 | + return $element->asUnspecified(); |
|
123 | + } |
|
124 | 124 | |
125 | - /** |
|
126 | - * {@inheritdoc} |
|
127 | - */ |
|
128 | - protected static function _decodeFromDER(Identifier $identifier, |
|
129 | - string $data, int &$offset): ElementBase |
|
130 | - { |
|
131 | - $idx = $offset; |
|
132 | - $length = Length::expectFromDER($data, $idx); |
|
133 | - // offset to inner value |
|
134 | - $value_offset = $idx; |
|
135 | - if ($length->isIndefinite()) { |
|
136 | - if ($identifier->isPrimitive()) { |
|
137 | - throw new DecodeException( |
|
138 | - 'Primitive type with indefinite length is not supported.'); |
|
139 | - } |
|
140 | - while (!Element::fromDER($data, $idx)->isType(self::TYPE_EOC)); |
|
141 | - // EOC consists of two octets. |
|
142 | - $value_length = $idx - $value_offset - 2; |
|
143 | - } else { |
|
144 | - $value_length = $length->intLength(); |
|
145 | - $idx += $value_length; |
|
146 | - } |
|
147 | - // late static binding since ApplicationType and PrivateType extend this class |
|
148 | - $type = new static($identifier, $data, $offset, $value_offset, |
|
149 | - $value_length, $length->isIndefinite()); |
|
150 | - $offset = $idx; |
|
151 | - return $type; |
|
152 | - } |
|
125 | + /** |
|
126 | + * {@inheritdoc} |
|
127 | + */ |
|
128 | + protected static function _decodeFromDER(Identifier $identifier, |
|
129 | + string $data, int &$offset): ElementBase |
|
130 | + { |
|
131 | + $idx = $offset; |
|
132 | + $length = Length::expectFromDER($data, $idx); |
|
133 | + // offset to inner value |
|
134 | + $value_offset = $idx; |
|
135 | + if ($length->isIndefinite()) { |
|
136 | + if ($identifier->isPrimitive()) { |
|
137 | + throw new DecodeException( |
|
138 | + 'Primitive type with indefinite length is not supported.'); |
|
139 | + } |
|
140 | + while (!Element::fromDER($data, $idx)->isType(self::TYPE_EOC)); |
|
141 | + // EOC consists of two octets. |
|
142 | + $value_length = $idx - $value_offset - 2; |
|
143 | + } else { |
|
144 | + $value_length = $length->intLength(); |
|
145 | + $idx += $value_length; |
|
146 | + } |
|
147 | + // late static binding since ApplicationType and PrivateType extend this class |
|
148 | + $type = new static($identifier, $data, $offset, $value_offset, |
|
149 | + $value_length, $length->isIndefinite()); |
|
150 | + $offset = $idx; |
|
151 | + return $type; |
|
152 | + } |
|
153 | 153 | |
154 | - /** |
|
155 | - * {@inheritdoc} |
|
156 | - */ |
|
157 | - protected function _encodedContentDER(): string |
|
158 | - { |
|
159 | - return substr($this->_data, $this->_valueOffset, $this->_valueLength); |
|
160 | - } |
|
154 | + /** |
|
155 | + * {@inheritdoc} |
|
156 | + */ |
|
157 | + protected function _encodedContentDER(): string |
|
158 | + { |
|
159 | + return substr($this->_data, $this->_valueOffset, $this->_valueLength); |
|
160 | + } |
|
161 | 161 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Tagged; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Tagged; |
6 | 6 |
@@ -12,19 +12,19 @@ |
||
12 | 12 | */ |
13 | 13 | interface ExplicitTagging extends ElementBase |
14 | 14 | { |
15 | - /** |
|
16 | - * Get explicitly tagged wrapped element. |
|
17 | - * |
|
18 | - * <strong>NOTE!</strong> Expectation checking is deprecated and shall be |
|
19 | - * done with <code>UnspecifiedType</code>. |
|
20 | - * |
|
21 | - * @todo Remove expectation checking |
|
22 | - * |
|
23 | - * @param null|int $expectedTag Expected tag of the underlying type |
|
24 | - * |
|
25 | - * @throws \UnexpectedValueException If expectation fails |
|
26 | - * |
|
27 | - * @return \Sop\ASN1\Type\UnspecifiedType |
|
28 | - */ |
|
29 | - public function explicit(?int $expectedTag = null): UnspecifiedType; |
|
15 | + /** |
|
16 | + * Get explicitly tagged wrapped element. |
|
17 | + * |
|
18 | + * <strong>NOTE!</strong> Expectation checking is deprecated and shall be |
|
19 | + * done with <code>UnspecifiedType</code>. |
|
20 | + * |
|
21 | + * @todo Remove expectation checking |
|
22 | + * |
|
23 | + * @param null|int $expectedTag Expected tag of the underlying type |
|
24 | + * |
|
25 | + * @throws \UnexpectedValueException If expectation fails |
|
26 | + * |
|
27 | + * @return \Sop\ASN1\Type\UnspecifiedType |
|
28 | + */ |
|
29 | + public function explicit(?int $expectedTag = null): UnspecifiedType; |
|
30 | 30 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Tagged; |
6 | 6 |
@@ -11,27 +11,27 @@ |
||
11 | 11 | */ |
12 | 12 | abstract class TaggedTypeWrap extends TaggedType |
13 | 13 | { |
14 | - /** |
|
15 | - * Wrapped element. |
|
16 | - * |
|
17 | - * @var \Sop\ASN1\Element |
|
18 | - */ |
|
19 | - protected $_element; |
|
14 | + /** |
|
15 | + * Wrapped element. |
|
16 | + * |
|
17 | + * @var \Sop\ASN1\Element |
|
18 | + */ |
|
19 | + protected $_element; |
|
20 | 20 | |
21 | - /** |
|
22 | - * Type class. |
|
23 | - * |
|
24 | - * @var int |
|
25 | - */ |
|
26 | - protected $_class; |
|
21 | + /** |
|
22 | + * Type class. |
|
23 | + * |
|
24 | + * @var int |
|
25 | + */ |
|
26 | + protected $_class; |
|
27 | 27 | |
28 | - /** |
|
29 | - * @see \Sop\ASN1\Element::typeClass() |
|
30 | - * |
|
31 | - * @return int |
|
32 | - */ |
|
33 | - public function typeClass(): int |
|
34 | - { |
|
35 | - return $this->_class; |
|
36 | - } |
|
28 | + /** |
|
29 | + * @see \Sop\ASN1\Element::typeClass() |
|
30 | + * |
|
31 | + * @return int |
|
32 | + */ |
|
33 | + public function typeClass(): int |
|
34 | + { |
|
35 | + return $this->_class; |
|
36 | + } |
|
37 | 37 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Tagged; |
6 | 6 |
@@ -17,692 +17,692 @@ |
||
17 | 17 | */ |
18 | 18 | class UnspecifiedType implements ElementBase |
19 | 19 | { |
20 | - /** |
|
21 | - * The wrapped element. |
|
22 | - * |
|
23 | - * @var Element |
|
24 | - */ |
|
25 | - private $_element; |
|
26 | - |
|
27 | - /** |
|
28 | - * Constructor. |
|
29 | - * |
|
30 | - * @param Element $el |
|
31 | - */ |
|
32 | - public function __construct(Element $el) |
|
33 | - { |
|
34 | - $this->_element = $el; |
|
35 | - } |
|
36 | - |
|
37 | - /** |
|
38 | - * Compatibility method to dispatch calls to the wrapped element. |
|
39 | - * |
|
40 | - * @todo Remove |
|
41 | - * |
|
42 | - * @deprecated Use <code>as*</code> accessor methods to ensure strict type |
|
43 | - * |
|
44 | - * @param string $mtd Method name |
|
45 | - * @param array $args Arguments |
|
46 | - * |
|
47 | - * @return mixed |
|
48 | - */ |
|
49 | - public function __call($mtd, array $args) |
|
50 | - { |
|
51 | - return call_user_func_array([$this->_element, $mtd], $args); |
|
52 | - } |
|
53 | - |
|
54 | - /** |
|
55 | - * Initialize from DER data. |
|
56 | - * |
|
57 | - * @param string $data DER encoded data |
|
58 | - * |
|
59 | - * @return self |
|
60 | - */ |
|
61 | - public static function fromDER(string $data): self |
|
62 | - { |
|
63 | - return Element::fromDER($data)->asUnspecified(); |
|
64 | - } |
|
65 | - |
|
66 | - /** |
|
67 | - * Initialize from ElementBase interface. |
|
68 | - * |
|
69 | - * @param ElementBase $el |
|
70 | - * |
|
71 | - * @return self |
|
72 | - */ |
|
73 | - public static function fromElementBase(ElementBase $el): self |
|
74 | - { |
|
75 | - // if element is already wrapped |
|
76 | - if ($el instanceof self) { |
|
77 | - return $el; |
|
78 | - } |
|
79 | - return new self($el->asElement()); |
|
80 | - } |
|
81 | - |
|
82 | - /** |
|
83 | - * Get the wrapped element as a context specific tagged type. |
|
84 | - * |
|
85 | - * @throws \UnexpectedValueException If the element is not tagged |
|
86 | - * |
|
87 | - * @return TaggedType |
|
88 | - */ |
|
89 | - public function asTagged(): TaggedType |
|
90 | - { |
|
91 | - if (!$this->_element instanceof TaggedType) { |
|
92 | - throw new \UnexpectedValueException( |
|
93 | - 'Tagged element expected, got ' . $this->_typeDescriptorString()); |
|
94 | - } |
|
95 | - return $this->_element; |
|
96 | - } |
|
97 | - |
|
98 | - /** |
|
99 | - * Get the wrapped element as an application specific type. |
|
100 | - * |
|
101 | - * @throws \UnexpectedValueException If element is not application specific |
|
102 | - * |
|
103 | - * @return \Sop\ASN1\Type\Tagged\ApplicationType |
|
104 | - */ |
|
105 | - public function asApplication(): Tagged\ApplicationType |
|
106 | - { |
|
107 | - if (!$this->_element instanceof Tagged\ApplicationType) { |
|
108 | - throw new \UnexpectedValueException( |
|
109 | - 'Application type expected, got ' . |
|
110 | - $this->_typeDescriptorString()); |
|
111 | - } |
|
112 | - return $this->_element; |
|
113 | - } |
|
114 | - |
|
115 | - /** |
|
116 | - * Get the wrapped element as a private tagged type. |
|
117 | - * |
|
118 | - * @throws \UnexpectedValueException If element is not using private tagging |
|
119 | - * |
|
120 | - * @return \Sop\ASN1\Type\Tagged\PrivateType |
|
121 | - */ |
|
122 | - public function asPrivate(): Tagged\PrivateType |
|
123 | - { |
|
124 | - if (!$this->_element instanceof Tagged\PrivateType) { |
|
125 | - throw new \UnexpectedValueException( |
|
126 | - 'Private type expected, got ' . $this->_typeDescriptorString()); |
|
127 | - } |
|
128 | - return $this->_element; |
|
129 | - } |
|
130 | - |
|
131 | - /** |
|
132 | - * Get the wrapped element as a boolean type. |
|
133 | - * |
|
134 | - * @throws \UnexpectedValueException If the element is not a boolean |
|
135 | - * |
|
136 | - * @return \Sop\ASN1\Type\Primitive\Boolean |
|
137 | - */ |
|
138 | - public function asBoolean(): Primitive\Boolean |
|
139 | - { |
|
140 | - if (!$this->_element instanceof Primitive\Boolean) { |
|
141 | - throw new \UnexpectedValueException( |
|
142 | - $this->_generateExceptionMessage(Element::TYPE_BOOLEAN)); |
|
143 | - } |
|
144 | - return $this->_element; |
|
145 | - } |
|
146 | - |
|
147 | - /** |
|
148 | - * Get the wrapped element as an integer type. |
|
149 | - * |
|
150 | - * @throws \UnexpectedValueException If the element is not an integer |
|
151 | - * |
|
152 | - * @return \Sop\ASN1\Type\Primitive\Integer |
|
153 | - */ |
|
154 | - public function asInteger(): Primitive\Integer |
|
155 | - { |
|
156 | - if (!$this->_element instanceof Primitive\Integer) { |
|
157 | - throw new \UnexpectedValueException( |
|
158 | - $this->_generateExceptionMessage(Element::TYPE_INTEGER)); |
|
159 | - } |
|
160 | - return $this->_element; |
|
161 | - } |
|
162 | - |
|
163 | - /** |
|
164 | - * Get the wrapped element as a bit string type. |
|
165 | - * |
|
166 | - * @throws \UnexpectedValueException If the element is not a bit string |
|
167 | - * |
|
168 | - * @return \Sop\ASN1\Type\Primitive\BitString |
|
169 | - */ |
|
170 | - public function asBitString(): Primitive\BitString |
|
171 | - { |
|
172 | - if (!$this->_element instanceof Primitive\BitString) { |
|
173 | - throw new \UnexpectedValueException( |
|
174 | - $this->_generateExceptionMessage(Element::TYPE_BIT_STRING)); |
|
175 | - } |
|
176 | - return $this->_element; |
|
177 | - } |
|
178 | - |
|
179 | - /** |
|
180 | - * Get the wrapped element as an octet string type. |
|
181 | - * |
|
182 | - * @throws \UnexpectedValueException If the element is not an octet string |
|
183 | - * |
|
184 | - * @return \Sop\ASN1\Type\Primitive\OctetString |
|
185 | - */ |
|
186 | - public function asOctetString(): Primitive\OctetString |
|
187 | - { |
|
188 | - if (!$this->_element instanceof Primitive\OctetString) { |
|
189 | - throw new \UnexpectedValueException( |
|
190 | - $this->_generateExceptionMessage(Element::TYPE_OCTET_STRING)); |
|
191 | - } |
|
192 | - return $this->_element; |
|
193 | - } |
|
194 | - |
|
195 | - /** |
|
196 | - * Get the wrapped element as a null type. |
|
197 | - * |
|
198 | - * @throws \UnexpectedValueException If the element is not a null |
|
199 | - * |
|
200 | - * @return \Sop\ASN1\Type\Primitive\NullType |
|
201 | - */ |
|
202 | - public function asNull(): Primitive\NullType |
|
203 | - { |
|
204 | - if (!$this->_element instanceof Primitive\NullType) { |
|
205 | - throw new \UnexpectedValueException( |
|
206 | - $this->_generateExceptionMessage(Element::TYPE_NULL)); |
|
207 | - } |
|
208 | - return $this->_element; |
|
209 | - } |
|
210 | - |
|
211 | - /** |
|
212 | - * Get the wrapped element as an object identifier type. |
|
213 | - * |
|
214 | - * @throws \UnexpectedValueException If the element is not an object |
|
215 | - * identifier |
|
216 | - * |
|
217 | - * @return \Sop\ASN1\Type\Primitive\ObjectIdentifier |
|
218 | - */ |
|
219 | - public function asObjectIdentifier(): Primitive\ObjectIdentifier |
|
220 | - { |
|
221 | - if (!$this->_element instanceof Primitive\ObjectIdentifier) { |
|
222 | - throw new \UnexpectedValueException( |
|
223 | - $this->_generateExceptionMessage( |
|
224 | - Element::TYPE_OBJECT_IDENTIFIER)); |
|
225 | - } |
|
226 | - return $this->_element; |
|
227 | - } |
|
228 | - |
|
229 | - /** |
|
230 | - * Get the wrapped element as an object descriptor type. |
|
231 | - * |
|
232 | - * @throws \UnexpectedValueException If the element is not an object |
|
233 | - * descriptor |
|
234 | - * |
|
235 | - * @return \Sop\ASN1\Type\Primitive\ObjectDescriptor |
|
236 | - */ |
|
237 | - public function asObjectDescriptor(): Primitive\ObjectDescriptor |
|
238 | - { |
|
239 | - if (!$this->_element instanceof Primitive\ObjectDescriptor) { |
|
240 | - throw new \UnexpectedValueException( |
|
241 | - $this->_generateExceptionMessage( |
|
242 | - Element::TYPE_OBJECT_DESCRIPTOR)); |
|
243 | - } |
|
244 | - return $this->_element; |
|
245 | - } |
|
246 | - |
|
247 | - /** |
|
248 | - * Get the wrapped element as a real type. |
|
249 | - * |
|
250 | - * @throws \UnexpectedValueException If the element is not a real |
|
251 | - * |
|
252 | - * @return \Sop\ASN1\Type\Primitive\Real |
|
253 | - */ |
|
254 | - public function asReal(): Primitive\Real |
|
255 | - { |
|
256 | - if (!$this->_element instanceof Primitive\Real) { |
|
257 | - throw new \UnexpectedValueException( |
|
258 | - $this->_generateExceptionMessage(Element::TYPE_REAL)); |
|
259 | - } |
|
260 | - return $this->_element; |
|
261 | - } |
|
262 | - |
|
263 | - /** |
|
264 | - * Get the wrapped element as an enumerated type. |
|
265 | - * |
|
266 | - * @throws \UnexpectedValueException If the element is not an enumerated |
|
267 | - * |
|
268 | - * @return \Sop\ASN1\Type\Primitive\Enumerated |
|
269 | - */ |
|
270 | - public function asEnumerated(): Primitive\Enumerated |
|
271 | - { |
|
272 | - if (!$this->_element instanceof Primitive\Enumerated) { |
|
273 | - throw new \UnexpectedValueException( |
|
274 | - $this->_generateExceptionMessage(Element::TYPE_ENUMERATED)); |
|
275 | - } |
|
276 | - return $this->_element; |
|
277 | - } |
|
278 | - |
|
279 | - /** |
|
280 | - * Get the wrapped element as a UTF8 string type. |
|
281 | - * |
|
282 | - * @throws \UnexpectedValueException If the element is not a UTF8 string |
|
283 | - * |
|
284 | - * @return \Sop\ASN1\Type\Primitive\UTF8String |
|
285 | - */ |
|
286 | - public function asUTF8String(): Primitive\UTF8String |
|
287 | - { |
|
288 | - if (!$this->_element instanceof Primitive\UTF8String) { |
|
289 | - throw new \UnexpectedValueException( |
|
290 | - $this->_generateExceptionMessage(Element::TYPE_UTF8_STRING)); |
|
291 | - } |
|
292 | - return $this->_element; |
|
293 | - } |
|
294 | - |
|
295 | - /** |
|
296 | - * Get the wrapped element as a relative OID type. |
|
297 | - * |
|
298 | - * @throws \UnexpectedValueException If the element is not a relative OID |
|
299 | - * |
|
300 | - * @return \Sop\ASN1\Type\Primitive\RelativeOID |
|
301 | - */ |
|
302 | - public function asRelativeOID(): Primitive\RelativeOID |
|
303 | - { |
|
304 | - if (!$this->_element instanceof Primitive\RelativeOID) { |
|
305 | - throw new \UnexpectedValueException( |
|
306 | - $this->_generateExceptionMessage(Element::TYPE_RELATIVE_OID)); |
|
307 | - } |
|
308 | - return $this->_element; |
|
309 | - } |
|
310 | - |
|
311 | - /** |
|
312 | - * Get the wrapped element as a sequence type. |
|
313 | - * |
|
314 | - * @throws \UnexpectedValueException If the element is not a sequence |
|
315 | - * |
|
316 | - * @return \Sop\ASN1\Type\Constructed\Sequence |
|
317 | - */ |
|
318 | - public function asSequence(): Constructed\Sequence |
|
319 | - { |
|
320 | - if (!$this->_element instanceof Constructed\Sequence) { |
|
321 | - throw new \UnexpectedValueException( |
|
322 | - $this->_generateExceptionMessage(Element::TYPE_SEQUENCE)); |
|
323 | - } |
|
324 | - return $this->_element; |
|
325 | - } |
|
326 | - |
|
327 | - /** |
|
328 | - * Get the wrapped element as a set type. |
|
329 | - * |
|
330 | - * @throws \UnexpectedValueException If the element is not a set |
|
331 | - * |
|
332 | - * @return \Sop\ASN1\Type\Constructed\Set |
|
333 | - */ |
|
334 | - public function asSet(): Constructed\Set |
|
335 | - { |
|
336 | - if (!$this->_element instanceof Constructed\Set) { |
|
337 | - throw new \UnexpectedValueException( |
|
338 | - $this->_generateExceptionMessage(Element::TYPE_SET)); |
|
339 | - } |
|
340 | - return $this->_element; |
|
341 | - } |
|
342 | - |
|
343 | - /** |
|
344 | - * Get the wrapped element as a numeric string type. |
|
345 | - * |
|
346 | - * @throws \UnexpectedValueException If the element is not a numeric string |
|
347 | - * |
|
348 | - * @return \Sop\ASN1\Type\Primitive\NumericString |
|
349 | - */ |
|
350 | - public function asNumericString(): Primitive\NumericString |
|
351 | - { |
|
352 | - if (!$this->_element instanceof Primitive\NumericString) { |
|
353 | - throw new \UnexpectedValueException( |
|
354 | - $this->_generateExceptionMessage(Element::TYPE_NUMERIC_STRING)); |
|
355 | - } |
|
356 | - return $this->_element; |
|
357 | - } |
|
358 | - |
|
359 | - /** |
|
360 | - * Get the wrapped element as a printable string type. |
|
361 | - * |
|
362 | - * @throws \UnexpectedValueException If the element is not a printable |
|
363 | - * string |
|
364 | - * |
|
365 | - * @return \Sop\ASN1\Type\Primitive\PrintableString |
|
366 | - */ |
|
367 | - public function asPrintableString(): Primitive\PrintableString |
|
368 | - { |
|
369 | - if (!$this->_element instanceof Primitive\PrintableString) { |
|
370 | - throw new \UnexpectedValueException( |
|
371 | - $this->_generateExceptionMessage(Element::TYPE_PRINTABLE_STRING)); |
|
372 | - } |
|
373 | - return $this->_element; |
|
374 | - } |
|
375 | - |
|
376 | - /** |
|
377 | - * Get the wrapped element as a T61 string type. |
|
378 | - * |
|
379 | - * @throws \UnexpectedValueException If the element is not a T61 string |
|
380 | - * |
|
381 | - * @return \Sop\ASN1\Type\Primitive\T61String |
|
382 | - */ |
|
383 | - public function asT61String(): Primitive\T61String |
|
384 | - { |
|
385 | - if (!$this->_element instanceof Primitive\T61String) { |
|
386 | - throw new \UnexpectedValueException( |
|
387 | - $this->_generateExceptionMessage(Element::TYPE_T61_STRING)); |
|
388 | - } |
|
389 | - return $this->_element; |
|
390 | - } |
|
391 | - |
|
392 | - /** |
|
393 | - * Get the wrapped element as a videotex string type. |
|
394 | - * |
|
395 | - * @throws \UnexpectedValueException If the element is not a videotex string |
|
396 | - * |
|
397 | - * @return \Sop\ASN1\Type\Primitive\VideotexString |
|
398 | - */ |
|
399 | - public function asVideotexString(): Primitive\VideotexString |
|
400 | - { |
|
401 | - if (!$this->_element instanceof Primitive\VideotexString) { |
|
402 | - throw new \UnexpectedValueException( |
|
403 | - $this->_generateExceptionMessage(Element::TYPE_VIDEOTEX_STRING)); |
|
404 | - } |
|
405 | - return $this->_element; |
|
406 | - } |
|
407 | - |
|
408 | - /** |
|
409 | - * Get the wrapped element as a IA5 string type. |
|
410 | - * |
|
411 | - * @throws \UnexpectedValueException If the element is not a IA5 string |
|
412 | - * |
|
413 | - * @return \Sop\ASN1\Type\Primitive\IA5String |
|
414 | - */ |
|
415 | - public function asIA5String(): Primitive\IA5String |
|
416 | - { |
|
417 | - if (!$this->_element instanceof Primitive\IA5String) { |
|
418 | - throw new \UnexpectedValueException( |
|
419 | - $this->_generateExceptionMessage(Element::TYPE_IA5_STRING)); |
|
420 | - } |
|
421 | - return $this->_element; |
|
422 | - } |
|
423 | - |
|
424 | - /** |
|
425 | - * Get the wrapped element as an UTC time type. |
|
426 | - * |
|
427 | - * @throws \UnexpectedValueException If the element is not a UTC time |
|
428 | - * |
|
429 | - * @return \Sop\ASN1\Type\Primitive\UTCTime |
|
430 | - */ |
|
431 | - public function asUTCTime(): Primitive\UTCTime |
|
432 | - { |
|
433 | - if (!$this->_element instanceof Primitive\UTCTime) { |
|
434 | - throw new \UnexpectedValueException( |
|
435 | - $this->_generateExceptionMessage(Element::TYPE_UTC_TIME)); |
|
436 | - } |
|
437 | - return $this->_element; |
|
438 | - } |
|
439 | - |
|
440 | - /** |
|
441 | - * Get the wrapped element as a generalized time type. |
|
442 | - * |
|
443 | - * @throws \UnexpectedValueException If the element is not a generalized |
|
444 | - * time |
|
445 | - * |
|
446 | - * @return \Sop\ASN1\Type\Primitive\GeneralizedTime |
|
447 | - */ |
|
448 | - public function asGeneralizedTime(): Primitive\GeneralizedTime |
|
449 | - { |
|
450 | - if (!$this->_element instanceof Primitive\GeneralizedTime) { |
|
451 | - throw new \UnexpectedValueException( |
|
452 | - $this->_generateExceptionMessage(Element::TYPE_GENERALIZED_TIME)); |
|
453 | - } |
|
454 | - return $this->_element; |
|
455 | - } |
|
456 | - |
|
457 | - /** |
|
458 | - * Get the wrapped element as a graphic string type. |
|
459 | - * |
|
460 | - * @throws \UnexpectedValueException If the element is not a graphic string |
|
461 | - * |
|
462 | - * @return \Sop\ASN1\Type\Primitive\GraphicString |
|
463 | - */ |
|
464 | - public function asGraphicString(): Primitive\GraphicString |
|
465 | - { |
|
466 | - if (!$this->_element instanceof Primitive\GraphicString) { |
|
467 | - throw new \UnexpectedValueException( |
|
468 | - $this->_generateExceptionMessage(Element::TYPE_GRAPHIC_STRING)); |
|
469 | - } |
|
470 | - return $this->_element; |
|
471 | - } |
|
472 | - |
|
473 | - /** |
|
474 | - * Get the wrapped element as a visible string type. |
|
475 | - * |
|
476 | - * @throws \UnexpectedValueException If the element is not a visible string |
|
477 | - * |
|
478 | - * @return \Sop\ASN1\Type\Primitive\VisibleString |
|
479 | - */ |
|
480 | - public function asVisibleString(): Primitive\VisibleString |
|
481 | - { |
|
482 | - if (!$this->_element instanceof Primitive\VisibleString) { |
|
483 | - throw new \UnexpectedValueException( |
|
484 | - $this->_generateExceptionMessage(Element::TYPE_VISIBLE_STRING)); |
|
485 | - } |
|
486 | - return $this->_element; |
|
487 | - } |
|
488 | - |
|
489 | - /** |
|
490 | - * Get the wrapped element as a general string type. |
|
491 | - * |
|
492 | - * @throws \UnexpectedValueException If the element is not general string |
|
493 | - * |
|
494 | - * @return \Sop\ASN1\Type\Primitive\GeneralString |
|
495 | - */ |
|
496 | - public function asGeneralString(): Primitive\GeneralString |
|
497 | - { |
|
498 | - if (!$this->_element instanceof Primitive\GeneralString) { |
|
499 | - throw new \UnexpectedValueException( |
|
500 | - $this->_generateExceptionMessage(Element::TYPE_GENERAL_STRING)); |
|
501 | - } |
|
502 | - return $this->_element; |
|
503 | - } |
|
504 | - |
|
505 | - /** |
|
506 | - * Get the wrapped element as a universal string type. |
|
507 | - * |
|
508 | - * @throws \UnexpectedValueException If the element is not a universal |
|
509 | - * string |
|
510 | - * |
|
511 | - * @return \Sop\ASN1\Type\Primitive\UniversalString |
|
512 | - */ |
|
513 | - public function asUniversalString(): Primitive\UniversalString |
|
514 | - { |
|
515 | - if (!$this->_element instanceof Primitive\UniversalString) { |
|
516 | - throw new \UnexpectedValueException( |
|
517 | - $this->_generateExceptionMessage(Element::TYPE_UNIVERSAL_STRING)); |
|
518 | - } |
|
519 | - return $this->_element; |
|
520 | - } |
|
521 | - |
|
522 | - /** |
|
523 | - * Get the wrapped element as a character string type. |
|
524 | - * |
|
525 | - * @throws \UnexpectedValueException If the element is not a character |
|
526 | - * string |
|
527 | - * |
|
528 | - * @return \Sop\ASN1\Type\Primitive\CharacterString |
|
529 | - */ |
|
530 | - public function asCharacterString(): Primitive\CharacterString |
|
531 | - { |
|
532 | - if (!$this->_element instanceof Primitive\CharacterString) { |
|
533 | - throw new \UnexpectedValueException( |
|
534 | - $this->_generateExceptionMessage(Element::TYPE_CHARACTER_STRING)); |
|
535 | - } |
|
536 | - return $this->_element; |
|
537 | - } |
|
538 | - |
|
539 | - /** |
|
540 | - * Get the wrapped element as a BMP string type. |
|
541 | - * |
|
542 | - * @throws \UnexpectedValueException If the element is not a bmp string |
|
543 | - * |
|
544 | - * @return \Sop\ASN1\Type\Primitive\BMPString |
|
545 | - */ |
|
546 | - public function asBMPString(): Primitive\BMPString |
|
547 | - { |
|
548 | - if (!$this->_element instanceof Primitive\BMPString) { |
|
549 | - throw new \UnexpectedValueException( |
|
550 | - $this->_generateExceptionMessage(Element::TYPE_BMP_STRING)); |
|
551 | - } |
|
552 | - return $this->_element; |
|
553 | - } |
|
554 | - |
|
555 | - /** |
|
556 | - * Get the wrapped element as any string type. |
|
557 | - * |
|
558 | - * @throws \UnexpectedValueException If the element is not a string |
|
559 | - * |
|
560 | - * @return StringType |
|
561 | - */ |
|
562 | - public function asString(): StringType |
|
563 | - { |
|
564 | - if (!$this->_element instanceof StringType) { |
|
565 | - throw new \UnexpectedValueException( |
|
566 | - $this->_generateExceptionMessage(Element::TYPE_STRING)); |
|
567 | - } |
|
568 | - return $this->_element; |
|
569 | - } |
|
570 | - |
|
571 | - /** |
|
572 | - * Get the wrapped element as any time type. |
|
573 | - * |
|
574 | - * @throws \UnexpectedValueException If the element is not a time |
|
575 | - * |
|
576 | - * @return TimeType |
|
577 | - */ |
|
578 | - public function asTime(): TimeType |
|
579 | - { |
|
580 | - if (!$this->_element instanceof TimeType) { |
|
581 | - throw new \UnexpectedValueException( |
|
582 | - $this->_generateExceptionMessage(Element::TYPE_TIME)); |
|
583 | - } |
|
584 | - return $this->_element; |
|
585 | - } |
|
586 | - |
|
587 | - /** |
|
588 | - * {@inheritdoc} |
|
589 | - */ |
|
590 | - public function toDER(): string |
|
591 | - { |
|
592 | - return $this->_element->toDER(); |
|
593 | - } |
|
594 | - |
|
595 | - /** |
|
596 | - * {@inheritdoc} |
|
597 | - */ |
|
598 | - public function typeClass(): int |
|
599 | - { |
|
600 | - return $this->_element->typeClass(); |
|
601 | - } |
|
602 | - |
|
603 | - /** |
|
604 | - * {@inheritdoc} |
|
605 | - */ |
|
606 | - public function isConstructed(): bool |
|
607 | - { |
|
608 | - return $this->_element->isConstructed(); |
|
609 | - } |
|
610 | - |
|
611 | - /** |
|
612 | - * {@inheritdoc} |
|
613 | - */ |
|
614 | - public function tag(): int |
|
615 | - { |
|
616 | - return $this->_element->tag(); |
|
617 | - } |
|
618 | - |
|
619 | - /** |
|
620 | - * {@inheritdoc} |
|
621 | - */ |
|
622 | - public function isType(int $tag): bool |
|
623 | - { |
|
624 | - return $this->_element->isType($tag); |
|
625 | - } |
|
626 | - |
|
627 | - /** |
|
628 | - * @todo Remove |
|
629 | - * |
|
630 | - * @deprecated use any <code>as*</code> accessor method first to ensure |
|
631 | - * type strictness |
|
632 | - * @see \Sop\ASN1\Feature\ElementBase::expectType() |
|
633 | - * |
|
634 | - * @return ElementBase |
|
635 | - */ |
|
636 | - public function expectType(int $tag): ElementBase |
|
637 | - { |
|
638 | - return $this->_element->expectType($tag); |
|
639 | - } |
|
640 | - |
|
641 | - /** |
|
642 | - * {@inheritdoc} |
|
643 | - */ |
|
644 | - public function isTagged(): bool |
|
645 | - { |
|
646 | - return $this->_element->isTagged(); |
|
647 | - } |
|
648 | - |
|
649 | - /** |
|
650 | - * @todo Remove |
|
651 | - * |
|
652 | - * @deprecated use any <code>as*</code> accessor method first to ensure |
|
653 | - * type strictness |
|
654 | - * @see \Sop\ASN1\Feature\ElementBase::expectTagged() |
|
655 | - * |
|
656 | - * @param null|mixed $tag |
|
657 | - * |
|
658 | - * @return TaggedType |
|
659 | - */ |
|
660 | - public function expectTagged(?int $tag = null): TaggedType |
|
661 | - { |
|
662 | - return $this->_element->expectTagged($tag); |
|
663 | - } |
|
664 | - |
|
665 | - /** |
|
666 | - * {@inheritdoc} |
|
667 | - */ |
|
668 | - public function asElement(): Element |
|
669 | - { |
|
670 | - return $this->_element; |
|
671 | - } |
|
672 | - |
|
673 | - /** |
|
674 | - * {@inheritdoc} |
|
675 | - */ |
|
676 | - public function asUnspecified(): UnspecifiedType |
|
677 | - { |
|
678 | - return $this; |
|
679 | - } |
|
680 | - |
|
681 | - /** |
|
682 | - * Generate message for exceptions thrown by <code>as*</code> methods. |
|
683 | - * |
|
684 | - * @param int $tag Type tag of the expected element |
|
685 | - * |
|
686 | - * @return string |
|
687 | - */ |
|
688 | - private function _generateExceptionMessage(int $tag): string |
|
689 | - { |
|
690 | - return sprintf('%s expected, got %s.', Element::tagToName($tag), |
|
691 | - $this->_typeDescriptorString()); |
|
692 | - } |
|
693 | - |
|
694 | - /** |
|
695 | - * Get textual description of the wrapped element for debugging purposes. |
|
696 | - * |
|
697 | - * @return string |
|
698 | - */ |
|
699 | - private function _typeDescriptorString(): string |
|
700 | - { |
|
701 | - $type_cls = $this->_element->typeClass(); |
|
702 | - $tag = $this->_element->tag(); |
|
703 | - if (Identifier::CLASS_UNIVERSAL == $type_cls) { |
|
704 | - return Element::tagToName($tag); |
|
705 | - } |
|
706 | - return Identifier::classToName($type_cls) . " TAG ${tag}"; |
|
707 | - } |
|
20 | + /** |
|
21 | + * The wrapped element. |
|
22 | + * |
|
23 | + * @var Element |
|
24 | + */ |
|
25 | + private $_element; |
|
26 | + |
|
27 | + /** |
|
28 | + * Constructor. |
|
29 | + * |
|
30 | + * @param Element $el |
|
31 | + */ |
|
32 | + public function __construct(Element $el) |
|
33 | + { |
|
34 | + $this->_element = $el; |
|
35 | + } |
|
36 | + |
|
37 | + /** |
|
38 | + * Compatibility method to dispatch calls to the wrapped element. |
|
39 | + * |
|
40 | + * @todo Remove |
|
41 | + * |
|
42 | + * @deprecated Use <code>as*</code> accessor methods to ensure strict type |
|
43 | + * |
|
44 | + * @param string $mtd Method name |
|
45 | + * @param array $args Arguments |
|
46 | + * |
|
47 | + * @return mixed |
|
48 | + */ |
|
49 | + public function __call($mtd, array $args) |
|
50 | + { |
|
51 | + return call_user_func_array([$this->_element, $mtd], $args); |
|
52 | + } |
|
53 | + |
|
54 | + /** |
|
55 | + * Initialize from DER data. |
|
56 | + * |
|
57 | + * @param string $data DER encoded data |
|
58 | + * |
|
59 | + * @return self |
|
60 | + */ |
|
61 | + public static function fromDER(string $data): self |
|
62 | + { |
|
63 | + return Element::fromDER($data)->asUnspecified(); |
|
64 | + } |
|
65 | + |
|
66 | + /** |
|
67 | + * Initialize from ElementBase interface. |
|
68 | + * |
|
69 | + * @param ElementBase $el |
|
70 | + * |
|
71 | + * @return self |
|
72 | + */ |
|
73 | + public static function fromElementBase(ElementBase $el): self |
|
74 | + { |
|
75 | + // if element is already wrapped |
|
76 | + if ($el instanceof self) { |
|
77 | + return $el; |
|
78 | + } |
|
79 | + return new self($el->asElement()); |
|
80 | + } |
|
81 | + |
|
82 | + /** |
|
83 | + * Get the wrapped element as a context specific tagged type. |
|
84 | + * |
|
85 | + * @throws \UnexpectedValueException If the element is not tagged |
|
86 | + * |
|
87 | + * @return TaggedType |
|
88 | + */ |
|
89 | + public function asTagged(): TaggedType |
|
90 | + { |
|
91 | + if (!$this->_element instanceof TaggedType) { |
|
92 | + throw new \UnexpectedValueException( |
|
93 | + 'Tagged element expected, got ' . $this->_typeDescriptorString()); |
|
94 | + } |
|
95 | + return $this->_element; |
|
96 | + } |
|
97 | + |
|
98 | + /** |
|
99 | + * Get the wrapped element as an application specific type. |
|
100 | + * |
|
101 | + * @throws \UnexpectedValueException If element is not application specific |
|
102 | + * |
|
103 | + * @return \Sop\ASN1\Type\Tagged\ApplicationType |
|
104 | + */ |
|
105 | + public function asApplication(): Tagged\ApplicationType |
|
106 | + { |
|
107 | + if (!$this->_element instanceof Tagged\ApplicationType) { |
|
108 | + throw new \UnexpectedValueException( |
|
109 | + 'Application type expected, got ' . |
|
110 | + $this->_typeDescriptorString()); |
|
111 | + } |
|
112 | + return $this->_element; |
|
113 | + } |
|
114 | + |
|
115 | + /** |
|
116 | + * Get the wrapped element as a private tagged type. |
|
117 | + * |
|
118 | + * @throws \UnexpectedValueException If element is not using private tagging |
|
119 | + * |
|
120 | + * @return \Sop\ASN1\Type\Tagged\PrivateType |
|
121 | + */ |
|
122 | + public function asPrivate(): Tagged\PrivateType |
|
123 | + { |
|
124 | + if (!$this->_element instanceof Tagged\PrivateType) { |
|
125 | + throw new \UnexpectedValueException( |
|
126 | + 'Private type expected, got ' . $this->_typeDescriptorString()); |
|
127 | + } |
|
128 | + return $this->_element; |
|
129 | + } |
|
130 | + |
|
131 | + /** |
|
132 | + * Get the wrapped element as a boolean type. |
|
133 | + * |
|
134 | + * @throws \UnexpectedValueException If the element is not a boolean |
|
135 | + * |
|
136 | + * @return \Sop\ASN1\Type\Primitive\Boolean |
|
137 | + */ |
|
138 | + public function asBoolean(): Primitive\Boolean |
|
139 | + { |
|
140 | + if (!$this->_element instanceof Primitive\Boolean) { |
|
141 | + throw new \UnexpectedValueException( |
|
142 | + $this->_generateExceptionMessage(Element::TYPE_BOOLEAN)); |
|
143 | + } |
|
144 | + return $this->_element; |
|
145 | + } |
|
146 | + |
|
147 | + /** |
|
148 | + * Get the wrapped element as an integer type. |
|
149 | + * |
|
150 | + * @throws \UnexpectedValueException If the element is not an integer |
|
151 | + * |
|
152 | + * @return \Sop\ASN1\Type\Primitive\Integer |
|
153 | + */ |
|
154 | + public function asInteger(): Primitive\Integer |
|
155 | + { |
|
156 | + if (!$this->_element instanceof Primitive\Integer) { |
|
157 | + throw new \UnexpectedValueException( |
|
158 | + $this->_generateExceptionMessage(Element::TYPE_INTEGER)); |
|
159 | + } |
|
160 | + return $this->_element; |
|
161 | + } |
|
162 | + |
|
163 | + /** |
|
164 | + * Get the wrapped element as a bit string type. |
|
165 | + * |
|
166 | + * @throws \UnexpectedValueException If the element is not a bit string |
|
167 | + * |
|
168 | + * @return \Sop\ASN1\Type\Primitive\BitString |
|
169 | + */ |
|
170 | + public function asBitString(): Primitive\BitString |
|
171 | + { |
|
172 | + if (!$this->_element instanceof Primitive\BitString) { |
|
173 | + throw new \UnexpectedValueException( |
|
174 | + $this->_generateExceptionMessage(Element::TYPE_BIT_STRING)); |
|
175 | + } |
|
176 | + return $this->_element; |
|
177 | + } |
|
178 | + |
|
179 | + /** |
|
180 | + * Get the wrapped element as an octet string type. |
|
181 | + * |
|
182 | + * @throws \UnexpectedValueException If the element is not an octet string |
|
183 | + * |
|
184 | + * @return \Sop\ASN1\Type\Primitive\OctetString |
|
185 | + */ |
|
186 | + public function asOctetString(): Primitive\OctetString |
|
187 | + { |
|
188 | + if (!$this->_element instanceof Primitive\OctetString) { |
|
189 | + throw new \UnexpectedValueException( |
|
190 | + $this->_generateExceptionMessage(Element::TYPE_OCTET_STRING)); |
|
191 | + } |
|
192 | + return $this->_element; |
|
193 | + } |
|
194 | + |
|
195 | + /** |
|
196 | + * Get the wrapped element as a null type. |
|
197 | + * |
|
198 | + * @throws \UnexpectedValueException If the element is not a null |
|
199 | + * |
|
200 | + * @return \Sop\ASN1\Type\Primitive\NullType |
|
201 | + */ |
|
202 | + public function asNull(): Primitive\NullType |
|
203 | + { |
|
204 | + if (!$this->_element instanceof Primitive\NullType) { |
|
205 | + throw new \UnexpectedValueException( |
|
206 | + $this->_generateExceptionMessage(Element::TYPE_NULL)); |
|
207 | + } |
|
208 | + return $this->_element; |
|
209 | + } |
|
210 | + |
|
211 | + /** |
|
212 | + * Get the wrapped element as an object identifier type. |
|
213 | + * |
|
214 | + * @throws \UnexpectedValueException If the element is not an object |
|
215 | + * identifier |
|
216 | + * |
|
217 | + * @return \Sop\ASN1\Type\Primitive\ObjectIdentifier |
|
218 | + */ |
|
219 | + public function asObjectIdentifier(): Primitive\ObjectIdentifier |
|
220 | + { |
|
221 | + if (!$this->_element instanceof Primitive\ObjectIdentifier) { |
|
222 | + throw new \UnexpectedValueException( |
|
223 | + $this->_generateExceptionMessage( |
|
224 | + Element::TYPE_OBJECT_IDENTIFIER)); |
|
225 | + } |
|
226 | + return $this->_element; |
|
227 | + } |
|
228 | + |
|
229 | + /** |
|
230 | + * Get the wrapped element as an object descriptor type. |
|
231 | + * |
|
232 | + * @throws \UnexpectedValueException If the element is not an object |
|
233 | + * descriptor |
|
234 | + * |
|
235 | + * @return \Sop\ASN1\Type\Primitive\ObjectDescriptor |
|
236 | + */ |
|
237 | + public function asObjectDescriptor(): Primitive\ObjectDescriptor |
|
238 | + { |
|
239 | + if (!$this->_element instanceof Primitive\ObjectDescriptor) { |
|
240 | + throw new \UnexpectedValueException( |
|
241 | + $this->_generateExceptionMessage( |
|
242 | + Element::TYPE_OBJECT_DESCRIPTOR)); |
|
243 | + } |
|
244 | + return $this->_element; |
|
245 | + } |
|
246 | + |
|
247 | + /** |
|
248 | + * Get the wrapped element as a real type. |
|
249 | + * |
|
250 | + * @throws \UnexpectedValueException If the element is not a real |
|
251 | + * |
|
252 | + * @return \Sop\ASN1\Type\Primitive\Real |
|
253 | + */ |
|
254 | + public function asReal(): Primitive\Real |
|
255 | + { |
|
256 | + if (!$this->_element instanceof Primitive\Real) { |
|
257 | + throw new \UnexpectedValueException( |
|
258 | + $this->_generateExceptionMessage(Element::TYPE_REAL)); |
|
259 | + } |
|
260 | + return $this->_element; |
|
261 | + } |
|
262 | + |
|
263 | + /** |
|
264 | + * Get the wrapped element as an enumerated type. |
|
265 | + * |
|
266 | + * @throws \UnexpectedValueException If the element is not an enumerated |
|
267 | + * |
|
268 | + * @return \Sop\ASN1\Type\Primitive\Enumerated |
|
269 | + */ |
|
270 | + public function asEnumerated(): Primitive\Enumerated |
|
271 | + { |
|
272 | + if (!$this->_element instanceof Primitive\Enumerated) { |
|
273 | + throw new \UnexpectedValueException( |
|
274 | + $this->_generateExceptionMessage(Element::TYPE_ENUMERATED)); |
|
275 | + } |
|
276 | + return $this->_element; |
|
277 | + } |
|
278 | + |
|
279 | + /** |
|
280 | + * Get the wrapped element as a UTF8 string type. |
|
281 | + * |
|
282 | + * @throws \UnexpectedValueException If the element is not a UTF8 string |
|
283 | + * |
|
284 | + * @return \Sop\ASN1\Type\Primitive\UTF8String |
|
285 | + */ |
|
286 | + public function asUTF8String(): Primitive\UTF8String |
|
287 | + { |
|
288 | + if (!$this->_element instanceof Primitive\UTF8String) { |
|
289 | + throw new \UnexpectedValueException( |
|
290 | + $this->_generateExceptionMessage(Element::TYPE_UTF8_STRING)); |
|
291 | + } |
|
292 | + return $this->_element; |
|
293 | + } |
|
294 | + |
|
295 | + /** |
|
296 | + * Get the wrapped element as a relative OID type. |
|
297 | + * |
|
298 | + * @throws \UnexpectedValueException If the element is not a relative OID |
|
299 | + * |
|
300 | + * @return \Sop\ASN1\Type\Primitive\RelativeOID |
|
301 | + */ |
|
302 | + public function asRelativeOID(): Primitive\RelativeOID |
|
303 | + { |
|
304 | + if (!$this->_element instanceof Primitive\RelativeOID) { |
|
305 | + throw new \UnexpectedValueException( |
|
306 | + $this->_generateExceptionMessage(Element::TYPE_RELATIVE_OID)); |
|
307 | + } |
|
308 | + return $this->_element; |
|
309 | + } |
|
310 | + |
|
311 | + /** |
|
312 | + * Get the wrapped element as a sequence type. |
|
313 | + * |
|
314 | + * @throws \UnexpectedValueException If the element is not a sequence |
|
315 | + * |
|
316 | + * @return \Sop\ASN1\Type\Constructed\Sequence |
|
317 | + */ |
|
318 | + public function asSequence(): Constructed\Sequence |
|
319 | + { |
|
320 | + if (!$this->_element instanceof Constructed\Sequence) { |
|
321 | + throw new \UnexpectedValueException( |
|
322 | + $this->_generateExceptionMessage(Element::TYPE_SEQUENCE)); |
|
323 | + } |
|
324 | + return $this->_element; |
|
325 | + } |
|
326 | + |
|
327 | + /** |
|
328 | + * Get the wrapped element as a set type. |
|
329 | + * |
|
330 | + * @throws \UnexpectedValueException If the element is not a set |
|
331 | + * |
|
332 | + * @return \Sop\ASN1\Type\Constructed\Set |
|
333 | + */ |
|
334 | + public function asSet(): Constructed\Set |
|
335 | + { |
|
336 | + if (!$this->_element instanceof Constructed\Set) { |
|
337 | + throw new \UnexpectedValueException( |
|
338 | + $this->_generateExceptionMessage(Element::TYPE_SET)); |
|
339 | + } |
|
340 | + return $this->_element; |
|
341 | + } |
|
342 | + |
|
343 | + /** |
|
344 | + * Get the wrapped element as a numeric string type. |
|
345 | + * |
|
346 | + * @throws \UnexpectedValueException If the element is not a numeric string |
|
347 | + * |
|
348 | + * @return \Sop\ASN1\Type\Primitive\NumericString |
|
349 | + */ |
|
350 | + public function asNumericString(): Primitive\NumericString |
|
351 | + { |
|
352 | + if (!$this->_element instanceof Primitive\NumericString) { |
|
353 | + throw new \UnexpectedValueException( |
|
354 | + $this->_generateExceptionMessage(Element::TYPE_NUMERIC_STRING)); |
|
355 | + } |
|
356 | + return $this->_element; |
|
357 | + } |
|
358 | + |
|
359 | + /** |
|
360 | + * Get the wrapped element as a printable string type. |
|
361 | + * |
|
362 | + * @throws \UnexpectedValueException If the element is not a printable |
|
363 | + * string |
|
364 | + * |
|
365 | + * @return \Sop\ASN1\Type\Primitive\PrintableString |
|
366 | + */ |
|
367 | + public function asPrintableString(): Primitive\PrintableString |
|
368 | + { |
|
369 | + if (!$this->_element instanceof Primitive\PrintableString) { |
|
370 | + throw new \UnexpectedValueException( |
|
371 | + $this->_generateExceptionMessage(Element::TYPE_PRINTABLE_STRING)); |
|
372 | + } |
|
373 | + return $this->_element; |
|
374 | + } |
|
375 | + |
|
376 | + /** |
|
377 | + * Get the wrapped element as a T61 string type. |
|
378 | + * |
|
379 | + * @throws \UnexpectedValueException If the element is not a T61 string |
|
380 | + * |
|
381 | + * @return \Sop\ASN1\Type\Primitive\T61String |
|
382 | + */ |
|
383 | + public function asT61String(): Primitive\T61String |
|
384 | + { |
|
385 | + if (!$this->_element instanceof Primitive\T61String) { |
|
386 | + throw new \UnexpectedValueException( |
|
387 | + $this->_generateExceptionMessage(Element::TYPE_T61_STRING)); |
|
388 | + } |
|
389 | + return $this->_element; |
|
390 | + } |
|
391 | + |
|
392 | + /** |
|
393 | + * Get the wrapped element as a videotex string type. |
|
394 | + * |
|
395 | + * @throws \UnexpectedValueException If the element is not a videotex string |
|
396 | + * |
|
397 | + * @return \Sop\ASN1\Type\Primitive\VideotexString |
|
398 | + */ |
|
399 | + public function asVideotexString(): Primitive\VideotexString |
|
400 | + { |
|
401 | + if (!$this->_element instanceof Primitive\VideotexString) { |
|
402 | + throw new \UnexpectedValueException( |
|
403 | + $this->_generateExceptionMessage(Element::TYPE_VIDEOTEX_STRING)); |
|
404 | + } |
|
405 | + return $this->_element; |
|
406 | + } |
|
407 | + |
|
408 | + /** |
|
409 | + * Get the wrapped element as a IA5 string type. |
|
410 | + * |
|
411 | + * @throws \UnexpectedValueException If the element is not a IA5 string |
|
412 | + * |
|
413 | + * @return \Sop\ASN1\Type\Primitive\IA5String |
|
414 | + */ |
|
415 | + public function asIA5String(): Primitive\IA5String |
|
416 | + { |
|
417 | + if (!$this->_element instanceof Primitive\IA5String) { |
|
418 | + throw new \UnexpectedValueException( |
|
419 | + $this->_generateExceptionMessage(Element::TYPE_IA5_STRING)); |
|
420 | + } |
|
421 | + return $this->_element; |
|
422 | + } |
|
423 | + |
|
424 | + /** |
|
425 | + * Get the wrapped element as an UTC time type. |
|
426 | + * |
|
427 | + * @throws \UnexpectedValueException If the element is not a UTC time |
|
428 | + * |
|
429 | + * @return \Sop\ASN1\Type\Primitive\UTCTime |
|
430 | + */ |
|
431 | + public function asUTCTime(): Primitive\UTCTime |
|
432 | + { |
|
433 | + if (!$this->_element instanceof Primitive\UTCTime) { |
|
434 | + throw new \UnexpectedValueException( |
|
435 | + $this->_generateExceptionMessage(Element::TYPE_UTC_TIME)); |
|
436 | + } |
|
437 | + return $this->_element; |
|
438 | + } |
|
439 | + |
|
440 | + /** |
|
441 | + * Get the wrapped element as a generalized time type. |
|
442 | + * |
|
443 | + * @throws \UnexpectedValueException If the element is not a generalized |
|
444 | + * time |
|
445 | + * |
|
446 | + * @return \Sop\ASN1\Type\Primitive\GeneralizedTime |
|
447 | + */ |
|
448 | + public function asGeneralizedTime(): Primitive\GeneralizedTime |
|
449 | + { |
|
450 | + if (!$this->_element instanceof Primitive\GeneralizedTime) { |
|
451 | + throw new \UnexpectedValueException( |
|
452 | + $this->_generateExceptionMessage(Element::TYPE_GENERALIZED_TIME)); |
|
453 | + } |
|
454 | + return $this->_element; |
|
455 | + } |
|
456 | + |
|
457 | + /** |
|
458 | + * Get the wrapped element as a graphic string type. |
|
459 | + * |
|
460 | + * @throws \UnexpectedValueException If the element is not a graphic string |
|
461 | + * |
|
462 | + * @return \Sop\ASN1\Type\Primitive\GraphicString |
|
463 | + */ |
|
464 | + public function asGraphicString(): Primitive\GraphicString |
|
465 | + { |
|
466 | + if (!$this->_element instanceof Primitive\GraphicString) { |
|
467 | + throw new \UnexpectedValueException( |
|
468 | + $this->_generateExceptionMessage(Element::TYPE_GRAPHIC_STRING)); |
|
469 | + } |
|
470 | + return $this->_element; |
|
471 | + } |
|
472 | + |
|
473 | + /** |
|
474 | + * Get the wrapped element as a visible string type. |
|
475 | + * |
|
476 | + * @throws \UnexpectedValueException If the element is not a visible string |
|
477 | + * |
|
478 | + * @return \Sop\ASN1\Type\Primitive\VisibleString |
|
479 | + */ |
|
480 | + public function asVisibleString(): Primitive\VisibleString |
|
481 | + { |
|
482 | + if (!$this->_element instanceof Primitive\VisibleString) { |
|
483 | + throw new \UnexpectedValueException( |
|
484 | + $this->_generateExceptionMessage(Element::TYPE_VISIBLE_STRING)); |
|
485 | + } |
|
486 | + return $this->_element; |
|
487 | + } |
|
488 | + |
|
489 | + /** |
|
490 | + * Get the wrapped element as a general string type. |
|
491 | + * |
|
492 | + * @throws \UnexpectedValueException If the element is not general string |
|
493 | + * |
|
494 | + * @return \Sop\ASN1\Type\Primitive\GeneralString |
|
495 | + */ |
|
496 | + public function asGeneralString(): Primitive\GeneralString |
|
497 | + { |
|
498 | + if (!$this->_element instanceof Primitive\GeneralString) { |
|
499 | + throw new \UnexpectedValueException( |
|
500 | + $this->_generateExceptionMessage(Element::TYPE_GENERAL_STRING)); |
|
501 | + } |
|
502 | + return $this->_element; |
|
503 | + } |
|
504 | + |
|
505 | + /** |
|
506 | + * Get the wrapped element as a universal string type. |
|
507 | + * |
|
508 | + * @throws \UnexpectedValueException If the element is not a universal |
|
509 | + * string |
|
510 | + * |
|
511 | + * @return \Sop\ASN1\Type\Primitive\UniversalString |
|
512 | + */ |
|
513 | + public function asUniversalString(): Primitive\UniversalString |
|
514 | + { |
|
515 | + if (!$this->_element instanceof Primitive\UniversalString) { |
|
516 | + throw new \UnexpectedValueException( |
|
517 | + $this->_generateExceptionMessage(Element::TYPE_UNIVERSAL_STRING)); |
|
518 | + } |
|
519 | + return $this->_element; |
|
520 | + } |
|
521 | + |
|
522 | + /** |
|
523 | + * Get the wrapped element as a character string type. |
|
524 | + * |
|
525 | + * @throws \UnexpectedValueException If the element is not a character |
|
526 | + * string |
|
527 | + * |
|
528 | + * @return \Sop\ASN1\Type\Primitive\CharacterString |
|
529 | + */ |
|
530 | + public function asCharacterString(): Primitive\CharacterString |
|
531 | + { |
|
532 | + if (!$this->_element instanceof Primitive\CharacterString) { |
|
533 | + throw new \UnexpectedValueException( |
|
534 | + $this->_generateExceptionMessage(Element::TYPE_CHARACTER_STRING)); |
|
535 | + } |
|
536 | + return $this->_element; |
|
537 | + } |
|
538 | + |
|
539 | + /** |
|
540 | + * Get the wrapped element as a BMP string type. |
|
541 | + * |
|
542 | + * @throws \UnexpectedValueException If the element is not a bmp string |
|
543 | + * |
|
544 | + * @return \Sop\ASN1\Type\Primitive\BMPString |
|
545 | + */ |
|
546 | + public function asBMPString(): Primitive\BMPString |
|
547 | + { |
|
548 | + if (!$this->_element instanceof Primitive\BMPString) { |
|
549 | + throw new \UnexpectedValueException( |
|
550 | + $this->_generateExceptionMessage(Element::TYPE_BMP_STRING)); |
|
551 | + } |
|
552 | + return $this->_element; |
|
553 | + } |
|
554 | + |
|
555 | + /** |
|
556 | + * Get the wrapped element as any string type. |
|
557 | + * |
|
558 | + * @throws \UnexpectedValueException If the element is not a string |
|
559 | + * |
|
560 | + * @return StringType |
|
561 | + */ |
|
562 | + public function asString(): StringType |
|
563 | + { |
|
564 | + if (!$this->_element instanceof StringType) { |
|
565 | + throw new \UnexpectedValueException( |
|
566 | + $this->_generateExceptionMessage(Element::TYPE_STRING)); |
|
567 | + } |
|
568 | + return $this->_element; |
|
569 | + } |
|
570 | + |
|
571 | + /** |
|
572 | + * Get the wrapped element as any time type. |
|
573 | + * |
|
574 | + * @throws \UnexpectedValueException If the element is not a time |
|
575 | + * |
|
576 | + * @return TimeType |
|
577 | + */ |
|
578 | + public function asTime(): TimeType |
|
579 | + { |
|
580 | + if (!$this->_element instanceof TimeType) { |
|
581 | + throw new \UnexpectedValueException( |
|
582 | + $this->_generateExceptionMessage(Element::TYPE_TIME)); |
|
583 | + } |
|
584 | + return $this->_element; |
|
585 | + } |
|
586 | + |
|
587 | + /** |
|
588 | + * {@inheritdoc} |
|
589 | + */ |
|
590 | + public function toDER(): string |
|
591 | + { |
|
592 | + return $this->_element->toDER(); |
|
593 | + } |
|
594 | + |
|
595 | + /** |
|
596 | + * {@inheritdoc} |
|
597 | + */ |
|
598 | + public function typeClass(): int |
|
599 | + { |
|
600 | + return $this->_element->typeClass(); |
|
601 | + } |
|
602 | + |
|
603 | + /** |
|
604 | + * {@inheritdoc} |
|
605 | + */ |
|
606 | + public function isConstructed(): bool |
|
607 | + { |
|
608 | + return $this->_element->isConstructed(); |
|
609 | + } |
|
610 | + |
|
611 | + /** |
|
612 | + * {@inheritdoc} |
|
613 | + */ |
|
614 | + public function tag(): int |
|
615 | + { |
|
616 | + return $this->_element->tag(); |
|
617 | + } |
|
618 | + |
|
619 | + /** |
|
620 | + * {@inheritdoc} |
|
621 | + */ |
|
622 | + public function isType(int $tag): bool |
|
623 | + { |
|
624 | + return $this->_element->isType($tag); |
|
625 | + } |
|
626 | + |
|
627 | + /** |
|
628 | + * @todo Remove |
|
629 | + * |
|
630 | + * @deprecated use any <code>as*</code> accessor method first to ensure |
|
631 | + * type strictness |
|
632 | + * @see \Sop\ASN1\Feature\ElementBase::expectType() |
|
633 | + * |
|
634 | + * @return ElementBase |
|
635 | + */ |
|
636 | + public function expectType(int $tag): ElementBase |
|
637 | + { |
|
638 | + return $this->_element->expectType($tag); |
|
639 | + } |
|
640 | + |
|
641 | + /** |
|
642 | + * {@inheritdoc} |
|
643 | + */ |
|
644 | + public function isTagged(): bool |
|
645 | + { |
|
646 | + return $this->_element->isTagged(); |
|
647 | + } |
|
648 | + |
|
649 | + /** |
|
650 | + * @todo Remove |
|
651 | + * |
|
652 | + * @deprecated use any <code>as*</code> accessor method first to ensure |
|
653 | + * type strictness |
|
654 | + * @see \Sop\ASN1\Feature\ElementBase::expectTagged() |
|
655 | + * |
|
656 | + * @param null|mixed $tag |
|
657 | + * |
|
658 | + * @return TaggedType |
|
659 | + */ |
|
660 | + public function expectTagged(?int $tag = null): TaggedType |
|
661 | + { |
|
662 | + return $this->_element->expectTagged($tag); |
|
663 | + } |
|
664 | + |
|
665 | + /** |
|
666 | + * {@inheritdoc} |
|
667 | + */ |
|
668 | + public function asElement(): Element |
|
669 | + { |
|
670 | + return $this->_element; |
|
671 | + } |
|
672 | + |
|
673 | + /** |
|
674 | + * {@inheritdoc} |
|
675 | + */ |
|
676 | + public function asUnspecified(): UnspecifiedType |
|
677 | + { |
|
678 | + return $this; |
|
679 | + } |
|
680 | + |
|
681 | + /** |
|
682 | + * Generate message for exceptions thrown by <code>as*</code> methods. |
|
683 | + * |
|
684 | + * @param int $tag Type tag of the expected element |
|
685 | + * |
|
686 | + * @return string |
|
687 | + */ |
|
688 | + private function _generateExceptionMessage(int $tag): string |
|
689 | + { |
|
690 | + return sprintf('%s expected, got %s.', Element::tagToName($tag), |
|
691 | + $this->_typeDescriptorString()); |
|
692 | + } |
|
693 | + |
|
694 | + /** |
|
695 | + * Get textual description of the wrapped element for debugging purposes. |
|
696 | + * |
|
697 | + * @return string |
|
698 | + */ |
|
699 | + private function _typeDescriptorString(): string |
|
700 | + { |
|
701 | + $type_cls = $this->_element->typeClass(); |
|
702 | + $tag = $this->_element->tag(); |
|
703 | + if (Identifier::CLASS_UNIVERSAL == $type_cls) { |
|
704 | + return Element::tagToName($tag); |
|
705 | + } |
|
706 | + return Identifier::classToName($type_cls) . " TAG ${tag}"; |
|
707 | + } |
|
708 | 708 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type; |
6 | 6 |
@@ -17,276 +17,276 @@ |
||
17 | 17 | */ |
18 | 18 | class Real extends Element |
19 | 19 | { |
20 | - use UniversalClass; |
|
21 | - use PrimitiveType; |
|
20 | + use UniversalClass; |
|
21 | + use PrimitiveType; |
|
22 | 22 | |
23 | - /** |
|
24 | - * Regex pattern to parse NR3 form number conforming to DER. |
|
25 | - * |
|
26 | - * @var string |
|
27 | - */ |
|
28 | - const NR3_REGEX = '/^(-?)(\d+)?\.E([+\-]?\d+)$/'; |
|
23 | + /** |
|
24 | + * Regex pattern to parse NR3 form number conforming to DER. |
|
25 | + * |
|
26 | + * @var string |
|
27 | + */ |
|
28 | + const NR3_REGEX = '/^(-?)(\d+)?\.E([+\-]?\d+)$/'; |
|
29 | 29 | |
30 | - /** |
|
31 | - * Regex pattern to parse PHP exponent number format. |
|
32 | - * |
|
33 | - * @see http://php.net/manual/en/language.types.float.php |
|
34 | - * |
|
35 | - * @var string |
|
36 | - */ |
|
37 | - const PHP_EXPONENT_DNUM = '/^' . |
|
38 | - '([+\-]?' . // sign |
|
39 | - '(?:' . |
|
40 | - '\d+' . // LNUM |
|
41 | - '|' . |
|
42 | - '(?:\d*\.\d+|\d+\.\d*)' . // DNUM |
|
43 | - '))[eE]' . |
|
44 | - '([+\-]?\d+)' . // exponent |
|
45 | - '$/'; |
|
30 | + /** |
|
31 | + * Regex pattern to parse PHP exponent number format. |
|
32 | + * |
|
33 | + * @see http://php.net/manual/en/language.types.float.php |
|
34 | + * |
|
35 | + * @var string |
|
36 | + */ |
|
37 | + const PHP_EXPONENT_DNUM = '/^' . |
|
38 | + '([+\-]?' . // sign |
|
39 | + '(?:' . |
|
40 | + '\d+' . // LNUM |
|
41 | + '|' . |
|
42 | + '(?:\d*\.\d+|\d+\.\d*)' . // DNUM |
|
43 | + '))[eE]' . |
|
44 | + '([+\-]?\d+)' . // exponent |
|
45 | + '$/'; |
|
46 | 46 | |
47 | - /** |
|
48 | - * Number zero represented in NR3 form. |
|
49 | - * |
|
50 | - * @var string |
|
51 | - */ |
|
52 | - const NR3_ZERO = '.E+0'; |
|
47 | + /** |
|
48 | + * Number zero represented in NR3 form. |
|
49 | + * |
|
50 | + * @var string |
|
51 | + */ |
|
52 | + const NR3_ZERO = '.E+0'; |
|
53 | 53 | |
54 | - /** |
|
55 | - * Number in NR3 form. |
|
56 | - * |
|
57 | - * @var string |
|
58 | - */ |
|
59 | - private $_number; |
|
54 | + /** |
|
55 | + * Number in NR3 form. |
|
56 | + * |
|
57 | + * @var string |
|
58 | + */ |
|
59 | + private $_number; |
|
60 | 60 | |
61 | - /** |
|
62 | - * Constructor. |
|
63 | - * |
|
64 | - * @param string $number number in NR3 form |
|
65 | - */ |
|
66 | - public function __construct(string $number) |
|
67 | - { |
|
68 | - $this->_typeTag = self::TYPE_REAL; |
|
69 | - if (!self::_validateNumber($number)) { |
|
70 | - throw new \InvalidArgumentException( |
|
71 | - "'${number}' is not a valid NR3 form real."); |
|
72 | - } |
|
73 | - $this->_number = $number; |
|
74 | - } |
|
61 | + /** |
|
62 | + * Constructor. |
|
63 | + * |
|
64 | + * @param string $number number in NR3 form |
|
65 | + */ |
|
66 | + public function __construct(string $number) |
|
67 | + { |
|
68 | + $this->_typeTag = self::TYPE_REAL; |
|
69 | + if (!self::_validateNumber($number)) { |
|
70 | + throw new \InvalidArgumentException( |
|
71 | + "'${number}' is not a valid NR3 form real."); |
|
72 | + } |
|
73 | + $this->_number = $number; |
|
74 | + } |
|
75 | 75 | |
76 | - /** |
|
77 | - * Initialize from float. |
|
78 | - * |
|
79 | - * @param float $number |
|
80 | - * |
|
81 | - * @return self |
|
82 | - */ |
|
83 | - public static function fromFloat(float $number): self |
|
84 | - { |
|
85 | - return new self(self::_decimalToNR3(strval($number))); |
|
86 | - } |
|
76 | + /** |
|
77 | + * Initialize from float. |
|
78 | + * |
|
79 | + * @param float $number |
|
80 | + * |
|
81 | + * @return self |
|
82 | + */ |
|
83 | + public static function fromFloat(float $number): self |
|
84 | + { |
|
85 | + return new self(self::_decimalToNR3(strval($number))); |
|
86 | + } |
|
87 | 87 | |
88 | - /** |
|
89 | - * Get number as a float. |
|
90 | - * |
|
91 | - * @return float |
|
92 | - */ |
|
93 | - public function float(): float |
|
94 | - { |
|
95 | - return self::_nr3ToDecimal($this->_number); |
|
96 | - } |
|
88 | + /** |
|
89 | + * Get number as a float. |
|
90 | + * |
|
91 | + * @return float |
|
92 | + */ |
|
93 | + public function float(): float |
|
94 | + { |
|
95 | + return self::_nr3ToDecimal($this->_number); |
|
96 | + } |
|
97 | 97 | |
98 | - /** |
|
99 | - * {@inheritdoc} |
|
100 | - */ |
|
101 | - protected function _encodedContentDER(): string |
|
102 | - { |
|
103 | - /* if the real value is the value zero, there shall be no contents |
|
98 | + /** |
|
99 | + * {@inheritdoc} |
|
100 | + */ |
|
101 | + protected function _encodedContentDER(): string |
|
102 | + { |
|
103 | + /* if the real value is the value zero, there shall be no contents |
|
104 | 104 | octets in the encoding. (X.690 07-2002, section 8.5.2) */ |
105 | - if (self::NR3_ZERO == $this->_number) { |
|
106 | - return ''; |
|
107 | - } |
|
108 | - // encode in NR3 decimal encoding |
|
109 | - return chr(0x03) . $this->_number; |
|
110 | - } |
|
105 | + if (self::NR3_ZERO == $this->_number) { |
|
106 | + return ''; |
|
107 | + } |
|
108 | + // encode in NR3 decimal encoding |
|
109 | + return chr(0x03) . $this->_number; |
|
110 | + } |
|
111 | 111 | |
112 | - /** |
|
113 | - * {@inheritdoc} |
|
114 | - */ |
|
115 | - protected static function _decodeFromDER(Identifier $identifier, |
|
116 | - string $data, int &$offset): ElementBase |
|
117 | - { |
|
118 | - $idx = $offset; |
|
119 | - $length = Length::expectFromDER($data, $idx)->intLength(); |
|
120 | - // if length is zero, value is zero (spec 8.5.2) |
|
121 | - if (!$length) { |
|
122 | - $obj = new self(self::NR3_ZERO); |
|
123 | - } else { |
|
124 | - $bytes = substr($data, $idx, $length); |
|
125 | - $byte = ord($bytes[0]); |
|
126 | - if (0x80 & $byte) { // bit 8 = 1 |
|
127 | - $obj = self::_decodeBinaryEncoding($bytes); |
|
128 | - } elseif (0x00 == $byte >> 6) { // bit 8 = 0, bit 7 = 0 |
|
129 | - $obj = self::_decodeDecimalEncoding($bytes); |
|
130 | - } else { // bit 8 = 0, bit 7 = 1 |
|
131 | - $obj = self::_decodeSpecialRealValue($bytes); |
|
132 | - } |
|
133 | - } |
|
134 | - $offset = $idx + $length; |
|
135 | - return $obj; |
|
136 | - } |
|
112 | + /** |
|
113 | + * {@inheritdoc} |
|
114 | + */ |
|
115 | + protected static function _decodeFromDER(Identifier $identifier, |
|
116 | + string $data, int &$offset): ElementBase |
|
117 | + { |
|
118 | + $idx = $offset; |
|
119 | + $length = Length::expectFromDER($data, $idx)->intLength(); |
|
120 | + // if length is zero, value is zero (spec 8.5.2) |
|
121 | + if (!$length) { |
|
122 | + $obj = new self(self::NR3_ZERO); |
|
123 | + } else { |
|
124 | + $bytes = substr($data, $idx, $length); |
|
125 | + $byte = ord($bytes[0]); |
|
126 | + if (0x80 & $byte) { // bit 8 = 1 |
|
127 | + $obj = self::_decodeBinaryEncoding($bytes); |
|
128 | + } elseif (0x00 == $byte >> 6) { // bit 8 = 0, bit 7 = 0 |
|
129 | + $obj = self::_decodeDecimalEncoding($bytes); |
|
130 | + } else { // bit 8 = 0, bit 7 = 1 |
|
131 | + $obj = self::_decodeSpecialRealValue($bytes); |
|
132 | + } |
|
133 | + } |
|
134 | + $offset = $idx + $length; |
|
135 | + return $obj; |
|
136 | + } |
|
137 | 137 | |
138 | - /** |
|
139 | - * @todo Implement |
|
140 | - * |
|
141 | - * @param string $data |
|
142 | - */ |
|
143 | - protected static function _decodeBinaryEncoding(string $data) |
|
144 | - { |
|
145 | - throw new \RuntimeException( |
|
146 | - 'Binary encoding of REAL is not implemented.'); |
|
147 | - } |
|
138 | + /** |
|
139 | + * @todo Implement |
|
140 | + * |
|
141 | + * @param string $data |
|
142 | + */ |
|
143 | + protected static function _decodeBinaryEncoding(string $data) |
|
144 | + { |
|
145 | + throw new \RuntimeException( |
|
146 | + 'Binary encoding of REAL is not implemented.'); |
|
147 | + } |
|
148 | 148 | |
149 | - /** |
|
150 | - * @param string $data |
|
151 | - * |
|
152 | - * @throws \RuntimeException |
|
153 | - * |
|
154 | - * @return self |
|
155 | - */ |
|
156 | - protected static function _decodeDecimalEncoding(string $data): self |
|
157 | - { |
|
158 | - $nr = ord($data[0]) & 0x03; |
|
159 | - if (0x03 != $nr) { |
|
160 | - throw new \RuntimeException('Only NR3 form supported.'); |
|
161 | - } |
|
162 | - $str = substr($data, 1); |
|
163 | - return new self($str); |
|
164 | - } |
|
149 | + /** |
|
150 | + * @param string $data |
|
151 | + * |
|
152 | + * @throws \RuntimeException |
|
153 | + * |
|
154 | + * @return self |
|
155 | + */ |
|
156 | + protected static function _decodeDecimalEncoding(string $data): self |
|
157 | + { |
|
158 | + $nr = ord($data[0]) & 0x03; |
|
159 | + if (0x03 != $nr) { |
|
160 | + throw new \RuntimeException('Only NR3 form supported.'); |
|
161 | + } |
|
162 | + $str = substr($data, 1); |
|
163 | + return new self($str); |
|
164 | + } |
|
165 | 165 | |
166 | - /** |
|
167 | - * @todo Implement |
|
168 | - * |
|
169 | - * @param string $data |
|
170 | - */ |
|
171 | - protected static function _decodeSpecialRealValue(string $data) |
|
172 | - { |
|
173 | - if (1 != strlen($data)) { |
|
174 | - throw new DecodeException( |
|
175 | - 'SpecialRealValue must have one content octet.'); |
|
176 | - } |
|
177 | - $byte = ord($data[0]); |
|
178 | - if (0x40 == $byte) { // positive infinity |
|
179 | - throw new \RuntimeException('PLUS-INFINITY not supported.'); |
|
180 | - } |
|
181 | - if (0x41 == $byte) { // negative infinity |
|
182 | - throw new \RuntimeException('MINUS-INFINITY not supported.'); |
|
183 | - } |
|
184 | - throw new DecodeException('Invalid SpecialRealValue encoding.'); |
|
185 | - } |
|
166 | + /** |
|
167 | + * @todo Implement |
|
168 | + * |
|
169 | + * @param string $data |
|
170 | + */ |
|
171 | + protected static function _decodeSpecialRealValue(string $data) |
|
172 | + { |
|
173 | + if (1 != strlen($data)) { |
|
174 | + throw new DecodeException( |
|
175 | + 'SpecialRealValue must have one content octet.'); |
|
176 | + } |
|
177 | + $byte = ord($data[0]); |
|
178 | + if (0x40 == $byte) { // positive infinity |
|
179 | + throw new \RuntimeException('PLUS-INFINITY not supported.'); |
|
180 | + } |
|
181 | + if (0x41 == $byte) { // negative infinity |
|
182 | + throw new \RuntimeException('MINUS-INFINITY not supported.'); |
|
183 | + } |
|
184 | + throw new DecodeException('Invalid SpecialRealValue encoding.'); |
|
185 | + } |
|
186 | 186 | |
187 | - /** |
|
188 | - * Convert decimal number string to NR3 form. |
|
189 | - * |
|
190 | - * @param string $str |
|
191 | - * |
|
192 | - * @return string |
|
193 | - */ |
|
194 | - private static function _decimalToNR3(string $str): string |
|
195 | - { |
|
196 | - // if number is in exponent form |
|
197 | - /** @var string[] $match */ |
|
198 | - if (preg_match(self::PHP_EXPONENT_DNUM, $str, $match)) { |
|
199 | - $parts = explode('.', $match[1]); |
|
200 | - $m = ltrim($parts[0], '0'); |
|
201 | - $e = intval($match[2]); |
|
202 | - // if mantissa had decimals |
|
203 | - if (2 == count($parts)) { |
|
204 | - $d = rtrim($parts[1], '0'); |
|
205 | - $e -= strlen($d); |
|
206 | - $m .= $d; |
|
207 | - } |
|
208 | - } else { |
|
209 | - // explode from decimal |
|
210 | - $parts = explode('.', $str); |
|
211 | - $m = ltrim($parts[0], '0'); |
|
212 | - // if number had decimals |
|
213 | - if (2 == count($parts)) { |
|
214 | - // exponent is negative number of the decimals |
|
215 | - $e = -strlen($parts[1]); |
|
216 | - // append decimals to the mantissa |
|
217 | - $m .= $parts[1]; |
|
218 | - } else { |
|
219 | - $e = 0; |
|
220 | - } |
|
221 | - // shift trailing zeroes from the mantissa to the exponent |
|
222 | - while ('0' === substr($m, -1)) { |
|
223 | - ++$e; |
|
224 | - $m = substr($m, 0, -1); |
|
225 | - } |
|
226 | - } |
|
227 | - /* if exponent is zero, it must be prefixed with a "+" sign |
|
187 | + /** |
|
188 | + * Convert decimal number string to NR3 form. |
|
189 | + * |
|
190 | + * @param string $str |
|
191 | + * |
|
192 | + * @return string |
|
193 | + */ |
|
194 | + private static function _decimalToNR3(string $str): string |
|
195 | + { |
|
196 | + // if number is in exponent form |
|
197 | + /** @var string[] $match */ |
|
198 | + if (preg_match(self::PHP_EXPONENT_DNUM, $str, $match)) { |
|
199 | + $parts = explode('.', $match[1]); |
|
200 | + $m = ltrim($parts[0], '0'); |
|
201 | + $e = intval($match[2]); |
|
202 | + // if mantissa had decimals |
|
203 | + if (2 == count($parts)) { |
|
204 | + $d = rtrim($parts[1], '0'); |
|
205 | + $e -= strlen($d); |
|
206 | + $m .= $d; |
|
207 | + } |
|
208 | + } else { |
|
209 | + // explode from decimal |
|
210 | + $parts = explode('.', $str); |
|
211 | + $m = ltrim($parts[0], '0'); |
|
212 | + // if number had decimals |
|
213 | + if (2 == count($parts)) { |
|
214 | + // exponent is negative number of the decimals |
|
215 | + $e = -strlen($parts[1]); |
|
216 | + // append decimals to the mantissa |
|
217 | + $m .= $parts[1]; |
|
218 | + } else { |
|
219 | + $e = 0; |
|
220 | + } |
|
221 | + // shift trailing zeroes from the mantissa to the exponent |
|
222 | + while ('0' === substr($m, -1)) { |
|
223 | + ++$e; |
|
224 | + $m = substr($m, 0, -1); |
|
225 | + } |
|
226 | + } |
|
227 | + /* if exponent is zero, it must be prefixed with a "+" sign |
|
228 | 228 | (X.690 07-2002, section 11.3.2.6) */ |
229 | - if (0 == $e) { |
|
230 | - $es = '+'; |
|
231 | - } else { |
|
232 | - $es = $e < 0 ? '-' : ''; |
|
233 | - } |
|
234 | - return sprintf('%s.E%s%d', $m, $es, abs($e)); |
|
235 | - } |
|
229 | + if (0 == $e) { |
|
230 | + $es = '+'; |
|
231 | + } else { |
|
232 | + $es = $e < 0 ? '-' : ''; |
|
233 | + } |
|
234 | + return sprintf('%s.E%s%d', $m, $es, abs($e)); |
|
235 | + } |
|
236 | 236 | |
237 | - /** |
|
238 | - * Convert NR3 form number to decimal. |
|
239 | - * |
|
240 | - * @param string $str |
|
241 | - * |
|
242 | - * @throws \UnexpectedValueException |
|
243 | - * |
|
244 | - * @return float |
|
245 | - */ |
|
246 | - private static function _nr3ToDecimal(string $str): float |
|
247 | - { |
|
248 | - /** @var string[] $match */ |
|
249 | - if (!preg_match(self::NR3_REGEX, $str, $match)) { |
|
250 | - throw new \UnexpectedValueException( |
|
251 | - "'${str}' is not a valid NR3 form real."); |
|
252 | - } |
|
253 | - $m = $match[2]; |
|
254 | - // if number started with minus sign |
|
255 | - $inv = '-' == $match[1]; |
|
256 | - $e = intval($match[3]); |
|
257 | - // positive exponent |
|
258 | - if ($e > 0) { |
|
259 | - // pad with trailing zeroes |
|
260 | - $num = $m . str_repeat('0', $e); |
|
261 | - } elseif ($e < 0) { |
|
262 | - // pad with leading zeroes |
|
263 | - if (strlen($m) < abs($e)) { |
|
264 | - $m = str_repeat('0', abs($e) - strlen($m)) . $m; |
|
265 | - } |
|
266 | - // insert decimal point |
|
267 | - $num = substr($m, 0, $e) . '.' . substr($m, $e); |
|
268 | - } else { |
|
269 | - $num = empty($m) ? '0' : $m; |
|
270 | - } |
|
271 | - // if number is negative |
|
272 | - if ($inv) { |
|
273 | - $num = "-${num}"; |
|
274 | - } |
|
275 | - return floatval($num); |
|
276 | - } |
|
237 | + /** |
|
238 | + * Convert NR3 form number to decimal. |
|
239 | + * |
|
240 | + * @param string $str |
|
241 | + * |
|
242 | + * @throws \UnexpectedValueException |
|
243 | + * |
|
244 | + * @return float |
|
245 | + */ |
|
246 | + private static function _nr3ToDecimal(string $str): float |
|
247 | + { |
|
248 | + /** @var string[] $match */ |
|
249 | + if (!preg_match(self::NR3_REGEX, $str, $match)) { |
|
250 | + throw new \UnexpectedValueException( |
|
251 | + "'${str}' is not a valid NR3 form real."); |
|
252 | + } |
|
253 | + $m = $match[2]; |
|
254 | + // if number started with minus sign |
|
255 | + $inv = '-' == $match[1]; |
|
256 | + $e = intval($match[3]); |
|
257 | + // positive exponent |
|
258 | + if ($e > 0) { |
|
259 | + // pad with trailing zeroes |
|
260 | + $num = $m . str_repeat('0', $e); |
|
261 | + } elseif ($e < 0) { |
|
262 | + // pad with leading zeroes |
|
263 | + if (strlen($m) < abs($e)) { |
|
264 | + $m = str_repeat('0', abs($e) - strlen($m)) . $m; |
|
265 | + } |
|
266 | + // insert decimal point |
|
267 | + $num = substr($m, 0, $e) . '.' . substr($m, $e); |
|
268 | + } else { |
|
269 | + $num = empty($m) ? '0' : $m; |
|
270 | + } |
|
271 | + // if number is negative |
|
272 | + if ($inv) { |
|
273 | + $num = "-${num}"; |
|
274 | + } |
|
275 | + return floatval($num); |
|
276 | + } |
|
277 | 277 | |
278 | - /** |
|
279 | - * Test that number is valid for this context. |
|
280 | - * |
|
281 | - * @param mixed $num |
|
282 | - * |
|
283 | - * @return bool |
|
284 | - */ |
|
285 | - private static function _validateNumber($num): bool |
|
286 | - { |
|
287 | - if (!preg_match(self::NR3_REGEX, $num)) { |
|
288 | - return false; |
|
289 | - } |
|
290 | - return true; |
|
291 | - } |
|
278 | + /** |
|
279 | + * Test that number is valid for this context. |
|
280 | + * |
|
281 | + * @param mixed $num |
|
282 | + * |
|
283 | + * @return bool |
|
284 | + */ |
|
285 | + private static function _validateNumber($num): bool |
|
286 | + { |
|
287 | + if (!preg_match(self::NR3_REGEX, $num)) { |
|
288 | + return false; |
|
289 | + } |
|
290 | + return true; |
|
291 | + } |
|
292 | 292 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Primitive; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Sop\ASN1\Type\Primitive; |
6 | 6 |