GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 95c197...564e5e )
by Joni
04:32
created
lib/ASN1/Type/Tagged/PrivateType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Tagged/ExplicitlyTaggedType.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -16,43 +16,43 @@
 block discarded – undo
16 16
  */
17 17
 class ExplicitlyTaggedType extends TaggedTypeWrap implements ExplicitTagging
18 18
 {
19
-    /**
20
-     * Constructor.
21
-     *
22
-     * @param int     $tag     Tag number
23
-     * @param Element $element Wrapped element
24
-     * @param int     $class   Type class
25
-     */
26
-    public function __construct(int $tag, Element $element,
27
-        int $class = Identifier::CLASS_CONTEXT_SPECIFIC)
28
-    {
29
-        $this->_typeTag = $tag;
30
-        $this->_element = $element;
31
-        $this->_class = $class;
32
-    }
19
+	/**
20
+	 * Constructor.
21
+	 *
22
+	 * @param int     $tag     Tag number
23
+	 * @param Element $element Wrapped element
24
+	 * @param int     $class   Type class
25
+	 */
26
+	public function __construct(int $tag, Element $element,
27
+		int $class = Identifier::CLASS_CONTEXT_SPECIFIC)
28
+	{
29
+		$this->_typeTag = $tag;
30
+		$this->_element = $element;
31
+		$this->_class = $class;
32
+	}
33 33
 
34
-    /**
35
-     * {@inheritdoc}
36
-     */
37
-    public function isConstructed(): bool
38
-    {
39
-        return true;
40
-    }
34
+	/**
35
+	 * {@inheritdoc}
36
+	 */
37
+	public function isConstructed(): bool
38
+	{
39
+		return true;
40
+	}
41 41
 
42
-    /**
43
-     * {@inheritdoc}
44
-     */
45
-    public function explicit(): UnspecifiedType
46
-    {
47
-        return $this->_element->asUnspecified();
48
-    }
42
+	/**
43
+	 * {@inheritdoc}
44
+	 */
45
+	public function explicit(): UnspecifiedType
46
+	{
47
+		return $this->_element->asUnspecified();
48
+	}
49 49
 
50
-    /**
51
-     * {@inheritdoc}
52
-     */
53
-    protected function _encodedContentDER(): string
54
-    {
55
-        // get the full encoding of the wrapped element
56
-        return $this->_element->toDER();
57
-    }
50
+	/**
51
+	 * {@inheritdoc}
52
+	 */
53
+	protected function _encodedContentDER(): string
54
+	{
55
+		// get the full encoding of the wrapped element
56
+		return $this->_element->toDER();
57
+	}
58 58
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Tagged/ImplicitlyTaggedType.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -17,52 +17,52 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Tagged/DERTaggedType.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Indentation   +120 added lines, -120 removed lines patch added patch discarded remove patch
@@ -23,135 +23,135 @@
 block discarded – undo
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(): UnspecifiedType
116
-    {
117
-        $idx = $this->_valueOffset;
118
-        return Element::fromDER($this->_data, $idx)->asUnspecified();
119
-    }
112
+	/**
113
+	 * {@inheritdoc}
114
+	 */
115
+	public function explicit(): UnspecifiedType
116
+	{
117
+		$idx = $this->_valueOffset;
118
+		return Element::fromDER($this->_data, $idx)->asUnspecified();
119
+	}
120 120
 
121
-    /**
122
-     * {@inheritdoc}
123
-     */
124
-    protected static function _decodeFromDER(Identifier $identifier,
125
-        string $data, int &$offset): ElementBase
126
-    {
127
-        $idx = $offset;
128
-        $length = Length::expectFromDER($data, $idx);
129
-        // offset to inner value
130
-        $value_offset = $idx;
131
-        if ($length->isIndefinite()) {
132
-            if ($identifier->isPrimitive()) {
133
-                throw new DecodeException(
134
-                    'Primitive type with indefinite length is not supported.');
135
-            }
136
-            while (!Element::fromDER($data, $idx)->isType(self::TYPE_EOC));
137
-            // EOC consists of two octets.
138
-            $value_length = $idx - $value_offset - 2;
139
-        } else {
140
-            $value_length = $length->intLength();
141
-            $idx += $value_length;
142
-        }
143
-        // late static binding since ApplicationType and PrivateType extend this class
144
-        $type = new static($identifier, $data, $offset, $value_offset,
145
-            $value_length, $length->isIndefinite());
146
-        $offset = $idx;
147
-        return $type;
148
-    }
121
+	/**
122
+	 * {@inheritdoc}
123
+	 */
124
+	protected static function _decodeFromDER(Identifier $identifier,
125
+		string $data, int &$offset): ElementBase
126
+	{
127
+		$idx = $offset;
128
+		$length = Length::expectFromDER($data, $idx);
129
+		// offset to inner value
130
+		$value_offset = $idx;
131
+		if ($length->isIndefinite()) {
132
+			if ($identifier->isPrimitive()) {
133
+				throw new DecodeException(
134
+					'Primitive type with indefinite length is not supported.');
135
+			}
136
+			while (!Element::fromDER($data, $idx)->isType(self::TYPE_EOC));
137
+			// EOC consists of two octets.
138
+			$value_length = $idx - $value_offset - 2;
139
+		} else {
140
+			$value_length = $length->intLength();
141
+			$idx += $value_length;
142
+		}
143
+		// late static binding since ApplicationType and PrivateType extend this class
144
+		$type = new static($identifier, $data, $offset, $value_offset,
145
+			$value_length, $length->isIndefinite());
146
+		$offset = $idx;
147
+		return $type;
148
+	}
149 149
 
150
-    /**
151
-     * {@inheritdoc}
152
-     */
153
-    protected function _encodedContentDER(): string
154
-    {
155
-        return substr($this->_data, $this->_valueOffset, $this->_valueLength);
156
-    }
150
+	/**
151
+	 * {@inheritdoc}
152
+	 */
153
+	protected function _encodedContentDER(): string
154
+	{
155
+		return substr($this->_data, $this->_valueOffset, $this->_valueLength);
156
+	}
157 157
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Tagged/ContextSpecificType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
lib/ASN1/Type/Tagged/ExplicitTagging.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
  */
13 13
 interface ExplicitTagging extends ElementBase
14 14
 {
15
-    /**
16
-     * Get explicitly tagged wrapped element.
17
-     *
18
-     * @return UnspecifiedType
19
-     */
20
-    public function explicit(): UnspecifiedType;
15
+	/**
16
+	 * Get explicitly tagged wrapped element.
17
+	 *
18
+	 * @return UnspecifiedType
19
+	 */
20
+	public function explicit(): UnspecifiedType;
21 21
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Tagged/TaggedTypeWrap.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -11,25 +11,25 @@
 block discarded – undo
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
-     * {@inheritdoc}
30
-     */
31
-    public function typeClass(): int
32
-    {
33
-        return $this->_class;
34
-    }
28
+	/**
29
+	 * {@inheritdoc}
30
+	 */
31
+	public function typeClass(): int
32
+	{
33
+		return $this->_class;
34
+	}
35 35
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/UnspecifiedType.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Indentation   +670 added lines, -670 removed lines patch added patch discarded remove patch
@@ -17,674 +17,674 @@
 block discarded – undo
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
-     * Initialize from DER data.
39
-     *
40
-     * @param string $data DER encoded data
41
-     *
42
-     * @return self
43
-     */
44
-    public static function fromDER(string $data): self
45
-    {
46
-        return Element::fromDER($data)->asUnspecified();
47
-    }
48
-
49
-    /**
50
-     * Initialize from ElementBase interface.
51
-     *
52
-     * @param ElementBase $el
53
-     *
54
-     * @return self
55
-     */
56
-    public static function fromElementBase(ElementBase $el): self
57
-    {
58
-        // if element is already wrapped
59
-        if ($el instanceof self) {
60
-            return $el;
61
-        }
62
-        return new self($el->asElement());
63
-    }
64
-
65
-    /**
66
-     * Get the wrapped element as a context specific tagged type.
67
-     *
68
-     * @throws \UnexpectedValueException If the element is not tagged
69
-     *
70
-     * @return TaggedType
71
-     */
72
-    public function asTagged(): TaggedType
73
-    {
74
-        if (!$this->_element instanceof TaggedType) {
75
-            throw new \UnexpectedValueException(
76
-                'Tagged element expected, got ' . $this->_typeDescriptorString());
77
-        }
78
-        return $this->_element;
79
-    }
80
-
81
-    /**
82
-     * Get the wrapped element as an application specific type.
83
-     *
84
-     * @throws \UnexpectedValueException If element is not application specific
85
-     *
86
-     * @return \Sop\ASN1\Type\Tagged\ApplicationType
87
-     */
88
-    public function asApplication(): Tagged\ApplicationType
89
-    {
90
-        if (!$this->_element instanceof Tagged\ApplicationType) {
91
-            throw new \UnexpectedValueException(
92
-                'Application type expected, got ' . $this->_typeDescriptorString());
93
-        }
94
-        return $this->_element;
95
-    }
96
-
97
-    /**
98
-     * Get the wrapped element as a private tagged type.
99
-     *
100
-     * @throws \UnexpectedValueException If element is not using private tagging
101
-     *
102
-     * @return \Sop\ASN1\Type\Tagged\PrivateType
103
-     */
104
-    public function asPrivate(): Tagged\PrivateType
105
-    {
106
-        if (!$this->_element instanceof Tagged\PrivateType) {
107
-            throw new \UnexpectedValueException(
108
-                'Private type expected, got ' . $this->_typeDescriptorString());
109
-        }
110
-        return $this->_element;
111
-    }
112
-
113
-    /**
114
-     * Get the wrapped element as a boolean type.
115
-     *
116
-     * @throws \UnexpectedValueException If the element is not a boolean
117
-     *
118
-     * @return \Sop\ASN1\Type\Primitive\Boolean
119
-     */
120
-    public function asBoolean(): Primitive\Boolean
121
-    {
122
-        if (!$this->_element instanceof Primitive\Boolean) {
123
-            throw new \UnexpectedValueException(
124
-                $this->_generateExceptionMessage(Element::TYPE_BOOLEAN));
125
-        }
126
-        return $this->_element;
127
-    }
128
-
129
-    /**
130
-     * Get the wrapped element as an integer type.
131
-     *
132
-     * @throws \UnexpectedValueException If the element is not an integer
133
-     *
134
-     * @return \Sop\ASN1\Type\Primitive\Integer
135
-     */
136
-    public function asInteger(): Primitive\Integer
137
-    {
138
-        if (!$this->_element instanceof Primitive\Integer) {
139
-            throw new \UnexpectedValueException(
140
-                $this->_generateExceptionMessage(Element::TYPE_INTEGER));
141
-        }
142
-        return $this->_element;
143
-    }
144
-
145
-    /**
146
-     * Get the wrapped element as a bit string type.
147
-     *
148
-     * @throws \UnexpectedValueException If the element is not a bit string
149
-     *
150
-     * @return \Sop\ASN1\Type\Primitive\BitString
151
-     */
152
-    public function asBitString(): Primitive\BitString
153
-    {
154
-        if (!$this->_element instanceof Primitive\BitString) {
155
-            throw new \UnexpectedValueException(
156
-                $this->_generateExceptionMessage(Element::TYPE_BIT_STRING));
157
-        }
158
-        return $this->_element;
159
-    }
160
-
161
-    /**
162
-     * Get the wrapped element as an octet string type.
163
-     *
164
-     * @throws \UnexpectedValueException If the element is not an octet string
165
-     *
166
-     * @return \Sop\ASN1\Type\Primitive\OctetString
167
-     */
168
-    public function asOctetString(): Primitive\OctetString
169
-    {
170
-        if (!$this->_element instanceof Primitive\OctetString) {
171
-            throw new \UnexpectedValueException(
172
-                $this->_generateExceptionMessage(Element::TYPE_OCTET_STRING));
173
-        }
174
-        return $this->_element;
175
-    }
176
-
177
-    /**
178
-     * Get the wrapped element as a null type.
179
-     *
180
-     * @throws \UnexpectedValueException If the element is not a null
181
-     *
182
-     * @return \Sop\ASN1\Type\Primitive\NullType
183
-     */
184
-    public function asNull(): Primitive\NullType
185
-    {
186
-        if (!$this->_element instanceof Primitive\NullType) {
187
-            throw new \UnexpectedValueException(
188
-                $this->_generateExceptionMessage(Element::TYPE_NULL));
189
-        }
190
-        return $this->_element;
191
-    }
192
-
193
-    /**
194
-     * Get the wrapped element as an object identifier type.
195
-     *
196
-     * @throws \UnexpectedValueException If the element is not an object identifier
197
-     *
198
-     * @return \Sop\ASN1\Type\Primitive\ObjectIdentifier
199
-     */
200
-    public function asObjectIdentifier(): Primitive\ObjectIdentifier
201
-    {
202
-        if (!$this->_element instanceof Primitive\ObjectIdentifier) {
203
-            throw new \UnexpectedValueException(
204
-                $this->_generateExceptionMessage(Element::TYPE_OBJECT_IDENTIFIER));
205
-        }
206
-        return $this->_element;
207
-    }
208
-
209
-    /**
210
-     * Get the wrapped element as an object descriptor type.
211
-     *
212
-     * @throws \UnexpectedValueException If the element is not an object descriptor
213
-     *
214
-     * @return \Sop\ASN1\Type\Primitive\ObjectDescriptor
215
-     */
216
-    public function asObjectDescriptor(): Primitive\ObjectDescriptor
217
-    {
218
-        if (!$this->_element instanceof Primitive\ObjectDescriptor) {
219
-            throw new \UnexpectedValueException(
220
-                $this->_generateExceptionMessage(Element::TYPE_OBJECT_DESCRIPTOR));
221
-        }
222
-        return $this->_element;
223
-    }
224
-
225
-    /**
226
-     * Get the wrapped element as a real type.
227
-     *
228
-     * @throws \UnexpectedValueException If the element is not a real
229
-     *
230
-     * @return \Sop\ASN1\Type\Primitive\Real
231
-     */
232
-    public function asReal(): Primitive\Real
233
-    {
234
-        if (!$this->_element instanceof Primitive\Real) {
235
-            throw new \UnexpectedValueException(
236
-                $this->_generateExceptionMessage(Element::TYPE_REAL));
237
-        }
238
-        return $this->_element;
239
-    }
240
-
241
-    /**
242
-     * Get the wrapped element as an enumerated type.
243
-     *
244
-     * @throws \UnexpectedValueException If the element is not an enumerated
245
-     *
246
-     * @return \Sop\ASN1\Type\Primitive\Enumerated
247
-     */
248
-    public function asEnumerated(): Primitive\Enumerated
249
-    {
250
-        if (!$this->_element instanceof Primitive\Enumerated) {
251
-            throw new \UnexpectedValueException(
252
-                $this->_generateExceptionMessage(Element::TYPE_ENUMERATED));
253
-        }
254
-        return $this->_element;
255
-    }
256
-
257
-    /**
258
-     * Get the wrapped element as a UTF8 string type.
259
-     *
260
-     * @throws \UnexpectedValueException If the element is not a UTF8 string
261
-     *
262
-     * @return \Sop\ASN1\Type\Primitive\UTF8String
263
-     */
264
-    public function asUTF8String(): Primitive\UTF8String
265
-    {
266
-        if (!$this->_element instanceof Primitive\UTF8String) {
267
-            throw new \UnexpectedValueException(
268
-                $this->_generateExceptionMessage(Element::TYPE_UTF8_STRING));
269
-        }
270
-        return $this->_element;
271
-    }
272
-
273
-    /**
274
-     * Get the wrapped element as a relative OID type.
275
-     *
276
-     * @throws \UnexpectedValueException If the element is not a relative OID
277
-     *
278
-     * @return \Sop\ASN1\Type\Primitive\RelativeOID
279
-     */
280
-    public function asRelativeOID(): Primitive\RelativeOID
281
-    {
282
-        if (!$this->_element instanceof Primitive\RelativeOID) {
283
-            throw new \UnexpectedValueException(
284
-                $this->_generateExceptionMessage(Element::TYPE_RELATIVE_OID));
285
-        }
286
-        return $this->_element;
287
-    }
288
-
289
-    /**
290
-     * Get the wrapped element as a sequence type.
291
-     *
292
-     * @throws \UnexpectedValueException If the element is not a sequence
293
-     *
294
-     * @return \Sop\ASN1\Type\Constructed\Sequence
295
-     */
296
-    public function asSequence(): Constructed\Sequence
297
-    {
298
-        if (!$this->_element instanceof Constructed\Sequence) {
299
-            throw new \UnexpectedValueException(
300
-                $this->_generateExceptionMessage(Element::TYPE_SEQUENCE));
301
-        }
302
-        return $this->_element;
303
-    }
304
-
305
-    /**
306
-     * Get the wrapped element as a set type.
307
-     *
308
-     * @throws \UnexpectedValueException If the element is not a set
309
-     *
310
-     * @return \Sop\ASN1\Type\Constructed\Set
311
-     */
312
-    public function asSet(): Constructed\Set
313
-    {
314
-        if (!$this->_element instanceof Constructed\Set) {
315
-            throw new \UnexpectedValueException(
316
-                $this->_generateExceptionMessage(Element::TYPE_SET));
317
-        }
318
-        return $this->_element;
319
-    }
320
-
321
-    /**
322
-     * Get the wrapped element as a numeric string type.
323
-     *
324
-     * @throws \UnexpectedValueException If the element is not a numeric string
325
-     *
326
-     * @return \Sop\ASN1\Type\Primitive\NumericString
327
-     */
328
-    public function asNumericString(): Primitive\NumericString
329
-    {
330
-        if (!$this->_element instanceof Primitive\NumericString) {
331
-            throw new \UnexpectedValueException(
332
-                $this->_generateExceptionMessage(Element::TYPE_NUMERIC_STRING));
333
-        }
334
-        return $this->_element;
335
-    }
336
-
337
-    /**
338
-     * Get the wrapped element as a printable string type.
339
-     *
340
-     * @throws \UnexpectedValueException If the element is not a printable
341
-     *                                   string
342
-     *
343
-     * @return \Sop\ASN1\Type\Primitive\PrintableString
344
-     */
345
-    public function asPrintableString(): Primitive\PrintableString
346
-    {
347
-        if (!$this->_element instanceof Primitive\PrintableString) {
348
-            throw new \UnexpectedValueException(
349
-                $this->_generateExceptionMessage(Element::TYPE_PRINTABLE_STRING));
350
-        }
351
-        return $this->_element;
352
-    }
353
-
354
-    /**
355
-     * Get the wrapped element as a T61 string type.
356
-     *
357
-     * @throws \UnexpectedValueException If the element is not a T61 string
358
-     *
359
-     * @return \Sop\ASN1\Type\Primitive\T61String
360
-     */
361
-    public function asT61String(): Primitive\T61String
362
-    {
363
-        if (!$this->_element instanceof Primitive\T61String) {
364
-            throw new \UnexpectedValueException(
365
-                $this->_generateExceptionMessage(Element::TYPE_T61_STRING));
366
-        }
367
-        return $this->_element;
368
-    }
369
-
370
-    /**
371
-     * Get the wrapped element as a videotex string type.
372
-     *
373
-     * @throws \UnexpectedValueException If the element is not a videotex string
374
-     *
375
-     * @return \Sop\ASN1\Type\Primitive\VideotexString
376
-     */
377
-    public function asVideotexString(): Primitive\VideotexString
378
-    {
379
-        if (!$this->_element instanceof Primitive\VideotexString) {
380
-            throw new \UnexpectedValueException(
381
-                $this->_generateExceptionMessage(Element::TYPE_VIDEOTEX_STRING));
382
-        }
383
-        return $this->_element;
384
-    }
385
-
386
-    /**
387
-     * Get the wrapped element as a IA5 string type.
388
-     *
389
-     * @throws \UnexpectedValueException If the element is not a IA5 string
390
-     *
391
-     * @return \Sop\ASN1\Type\Primitive\IA5String
392
-     */
393
-    public function asIA5String(): Primitive\IA5String
394
-    {
395
-        if (!$this->_element instanceof Primitive\IA5String) {
396
-            throw new \UnexpectedValueException(
397
-                $this->_generateExceptionMessage(Element::TYPE_IA5_STRING));
398
-        }
399
-        return $this->_element;
400
-    }
401
-
402
-    /**
403
-     * Get the wrapped element as an UTC time type.
404
-     *
405
-     * @throws \UnexpectedValueException If the element is not a UTC time
406
-     *
407
-     * @return \Sop\ASN1\Type\Primitive\UTCTime
408
-     */
409
-    public function asUTCTime(): Primitive\UTCTime
410
-    {
411
-        if (!$this->_element instanceof Primitive\UTCTime) {
412
-            throw new \UnexpectedValueException(
413
-                $this->_generateExceptionMessage(Element::TYPE_UTC_TIME));
414
-        }
415
-        return $this->_element;
416
-    }
417
-
418
-    /**
419
-     * Get the wrapped element as a generalized time type.
420
-     *
421
-     * @throws \UnexpectedValueException If the element is not a generalized time
422
-     *
423
-     * @return \Sop\ASN1\Type\Primitive\GeneralizedTime
424
-     */
425
-    public function asGeneralizedTime(): Primitive\GeneralizedTime
426
-    {
427
-        if (!$this->_element instanceof Primitive\GeneralizedTime) {
428
-            throw new \UnexpectedValueException(
429
-                $this->_generateExceptionMessage(Element::TYPE_GENERALIZED_TIME));
430
-        }
431
-        return $this->_element;
432
-    }
433
-
434
-    /**
435
-     * Get the wrapped element as a graphic string type.
436
-     *
437
-     * @throws \UnexpectedValueException If the element is not a graphic string
438
-     *
439
-     * @return \Sop\ASN1\Type\Primitive\GraphicString
440
-     */
441
-    public function asGraphicString(): Primitive\GraphicString
442
-    {
443
-        if (!$this->_element instanceof Primitive\GraphicString) {
444
-            throw new \UnexpectedValueException(
445
-                $this->_generateExceptionMessage(Element::TYPE_GRAPHIC_STRING));
446
-        }
447
-        return $this->_element;
448
-    }
449
-
450
-    /**
451
-     * Get the wrapped element as a visible string type.
452
-     *
453
-     * @throws \UnexpectedValueException If the element is not a visible string
454
-     *
455
-     * @return \Sop\ASN1\Type\Primitive\VisibleString
456
-     */
457
-    public function asVisibleString(): Primitive\VisibleString
458
-    {
459
-        if (!$this->_element instanceof Primitive\VisibleString) {
460
-            throw new \UnexpectedValueException(
461
-                $this->_generateExceptionMessage(Element::TYPE_VISIBLE_STRING));
462
-        }
463
-        return $this->_element;
464
-    }
465
-
466
-    /**
467
-     * Get the wrapped element as a general string type.
468
-     *
469
-     * @throws \UnexpectedValueException If the element is not general string
470
-     *
471
-     * @return \Sop\ASN1\Type\Primitive\GeneralString
472
-     */
473
-    public function asGeneralString(): Primitive\GeneralString
474
-    {
475
-        if (!$this->_element instanceof Primitive\GeneralString) {
476
-            throw new \UnexpectedValueException(
477
-                $this->_generateExceptionMessage(Element::TYPE_GENERAL_STRING));
478
-        }
479
-        return $this->_element;
480
-    }
481
-
482
-    /**
483
-     * Get the wrapped element as a universal string type.
484
-     *
485
-     * @throws \UnexpectedValueException If the element is not a universal string
486
-     *
487
-     * @return \Sop\ASN1\Type\Primitive\UniversalString
488
-     */
489
-    public function asUniversalString(): Primitive\UniversalString
490
-    {
491
-        if (!$this->_element instanceof Primitive\UniversalString) {
492
-            throw new \UnexpectedValueException(
493
-                $this->_generateExceptionMessage(Element::TYPE_UNIVERSAL_STRING));
494
-        }
495
-        return $this->_element;
496
-    }
497
-
498
-    /**
499
-     * Get the wrapped element as a character string type.
500
-     *
501
-     * @throws \UnexpectedValueException If the element is not a character string
502
-     *
503
-     * @return \Sop\ASN1\Type\Primitive\CharacterString
504
-     */
505
-    public function asCharacterString(): Primitive\CharacterString
506
-    {
507
-        if (!$this->_element instanceof Primitive\CharacterString) {
508
-            throw new \UnexpectedValueException(
509
-                $this->_generateExceptionMessage(Element::TYPE_CHARACTER_STRING));
510
-        }
511
-        return $this->_element;
512
-    }
513
-
514
-    /**
515
-     * Get the wrapped element as a BMP string type.
516
-     *
517
-     * @throws \UnexpectedValueException If the element is not a bmp string
518
-     *
519
-     * @return \Sop\ASN1\Type\Primitive\BMPString
520
-     */
521
-    public function asBMPString(): Primitive\BMPString
522
-    {
523
-        if (!$this->_element instanceof Primitive\BMPString) {
524
-            throw new \UnexpectedValueException(
525
-                $this->_generateExceptionMessage(Element::TYPE_BMP_STRING));
526
-        }
527
-        return $this->_element;
528
-    }
529
-
530
-    /**
531
-     * Get the wrapped element as a constructed string type.
532
-     *
533
-     * @throws \UnexpectedValueException If the element is not a constructed string
534
-     *
535
-     * @return \Sop\ASN1\Type\Constructed\ConstructedString
536
-     */
537
-    public function asConstructedString(): Constructed\ConstructedString
538
-    {
539
-        if (!$this->_element instanceof Constructed\ConstructedString) {
540
-            throw new \UnexpectedValueException(
541
-                $this->_generateExceptionMessage(Element::TYPE_CONSTRUCTED_STRING));
542
-        }
543
-        return $this->_element;
544
-    }
545
-
546
-    /**
547
-     * Get the wrapped element as any string type.
548
-     *
549
-     * @throws \UnexpectedValueException If the element is not a string
550
-     *
551
-     * @return StringType
552
-     */
553
-    public function asString(): StringType
554
-    {
555
-        if (!$this->_element instanceof StringType) {
556
-            throw new \UnexpectedValueException(
557
-                $this->_generateExceptionMessage(Element::TYPE_STRING));
558
-        }
559
-        return $this->_element;
560
-    }
561
-
562
-    /**
563
-     * Get the wrapped element as any time type.
564
-     *
565
-     * @throws \UnexpectedValueException If the element is not a time
566
-     *
567
-     * @return TimeType
568
-     */
569
-    public function asTime(): TimeType
570
-    {
571
-        if (!$this->_element instanceof TimeType) {
572
-            throw new \UnexpectedValueException(
573
-                $this->_generateExceptionMessage(Element::TYPE_TIME));
574
-        }
575
-        return $this->_element;
576
-    }
577
-
578
-    /**
579
-     * {@inheritdoc}
580
-     */
581
-    public function toDER(): string
582
-    {
583
-        return $this->_element->toDER();
584
-    }
585
-
586
-    /**
587
-     * {@inheritdoc}
588
-     */
589
-    public function typeClass(): int
590
-    {
591
-        return $this->_element->typeClass();
592
-    }
593
-
594
-    /**
595
-     * {@inheritdoc}
596
-     */
597
-    public function isConstructed(): bool
598
-    {
599
-        return $this->_element->isConstructed();
600
-    }
601
-
602
-    /**
603
-     * {@inheritdoc}
604
-     */
605
-    public function tag(): int
606
-    {
607
-        return $this->_element->tag();
608
-    }
609
-
610
-    /**
611
-     * {@inheritdoc}
612
-     */
613
-    public function isType(int $tag): bool
614
-    {
615
-        return $this->_element->isType($tag);
616
-    }
617
-
618
-    /**
619
-     * {@inheritdoc}
620
-     *
621
-     * Consider using any of the `as*` accessor methods instead.
622
-     */
623
-    public function expectType(int $tag): ElementBase
624
-    {
625
-        return $this->_element->expectType($tag);
626
-    }
627
-
628
-    /**
629
-     * {@inheritdoc}
630
-     */
631
-    public function isTagged(): bool
632
-    {
633
-        return $this->_element->isTagged();
634
-    }
635
-
636
-    /**
637
-     * {@inheritdoc}
638
-     *
639
-     * Consider using `asTagged()` method instead and chaining
640
-     * with `TaggedType::asExplicit()` or `TaggedType::asImplicit()`.
641
-     */
642
-    public function expectTagged(?int $tag = null): TaggedType
643
-    {
644
-        return $this->_element->expectTagged($tag);
645
-    }
646
-
647
-    /**
648
-     * {@inheritdoc}
649
-     */
650
-    public function asElement(): Element
651
-    {
652
-        return $this->_element;
653
-    }
654
-
655
-    /**
656
-     * {@inheritdoc}
657
-     */
658
-    public function asUnspecified(): UnspecifiedType
659
-    {
660
-        return $this;
661
-    }
662
-
663
-    /**
664
-     * Generate message for exceptions thrown by `as*` methods.
665
-     *
666
-     * @param int $tag Type tag of the expected element
667
-     *
668
-     * @return string
669
-     */
670
-    private function _generateExceptionMessage(int $tag): string
671
-    {
672
-        return sprintf('%s expected, got %s.', Element::tagToName($tag),
673
-            $this->_typeDescriptorString());
674
-    }
675
-
676
-    /**
677
-     * Get textual description of the wrapped element for debugging purposes.
678
-     *
679
-     * @return string
680
-     */
681
-    private function _typeDescriptorString(): string
682
-    {
683
-        $type_cls = $this->_element->typeClass();
684
-        $tag = $this->_element->tag();
685
-        if (Identifier::CLASS_UNIVERSAL === $type_cls) {
686
-            return Element::tagToName($tag);
687
-        }
688
-        return Identifier::classToName($type_cls) . " TAG {$tag}";
689
-    }
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
+	 * Initialize from DER data.
39
+	 *
40
+	 * @param string $data DER encoded data
41
+	 *
42
+	 * @return self
43
+	 */
44
+	public static function fromDER(string $data): self
45
+	{
46
+		return Element::fromDER($data)->asUnspecified();
47
+	}
48
+
49
+	/**
50
+	 * Initialize from ElementBase interface.
51
+	 *
52
+	 * @param ElementBase $el
53
+	 *
54
+	 * @return self
55
+	 */
56
+	public static function fromElementBase(ElementBase $el): self
57
+	{
58
+		// if element is already wrapped
59
+		if ($el instanceof self) {
60
+			return $el;
61
+		}
62
+		return new self($el->asElement());
63
+	}
64
+
65
+	/**
66
+	 * Get the wrapped element as a context specific tagged type.
67
+	 *
68
+	 * @throws \UnexpectedValueException If the element is not tagged
69
+	 *
70
+	 * @return TaggedType
71
+	 */
72
+	public function asTagged(): TaggedType
73
+	{
74
+		if (!$this->_element instanceof TaggedType) {
75
+			throw new \UnexpectedValueException(
76
+				'Tagged element expected, got ' . $this->_typeDescriptorString());
77
+		}
78
+		return $this->_element;
79
+	}
80
+
81
+	/**
82
+	 * Get the wrapped element as an application specific type.
83
+	 *
84
+	 * @throws \UnexpectedValueException If element is not application specific
85
+	 *
86
+	 * @return \Sop\ASN1\Type\Tagged\ApplicationType
87
+	 */
88
+	public function asApplication(): Tagged\ApplicationType
89
+	{
90
+		if (!$this->_element instanceof Tagged\ApplicationType) {
91
+			throw new \UnexpectedValueException(
92
+				'Application type expected, got ' . $this->_typeDescriptorString());
93
+		}
94
+		return $this->_element;
95
+	}
96
+
97
+	/**
98
+	 * Get the wrapped element as a private tagged type.
99
+	 *
100
+	 * @throws \UnexpectedValueException If element is not using private tagging
101
+	 *
102
+	 * @return \Sop\ASN1\Type\Tagged\PrivateType
103
+	 */
104
+	public function asPrivate(): Tagged\PrivateType
105
+	{
106
+		if (!$this->_element instanceof Tagged\PrivateType) {
107
+			throw new \UnexpectedValueException(
108
+				'Private type expected, got ' . $this->_typeDescriptorString());
109
+		}
110
+		return $this->_element;
111
+	}
112
+
113
+	/**
114
+	 * Get the wrapped element as a boolean type.
115
+	 *
116
+	 * @throws \UnexpectedValueException If the element is not a boolean
117
+	 *
118
+	 * @return \Sop\ASN1\Type\Primitive\Boolean
119
+	 */
120
+	public function asBoolean(): Primitive\Boolean
121
+	{
122
+		if (!$this->_element instanceof Primitive\Boolean) {
123
+			throw new \UnexpectedValueException(
124
+				$this->_generateExceptionMessage(Element::TYPE_BOOLEAN));
125
+		}
126
+		return $this->_element;
127
+	}
128
+
129
+	/**
130
+	 * Get the wrapped element as an integer type.
131
+	 *
132
+	 * @throws \UnexpectedValueException If the element is not an integer
133
+	 *
134
+	 * @return \Sop\ASN1\Type\Primitive\Integer
135
+	 */
136
+	public function asInteger(): Primitive\Integer
137
+	{
138
+		if (!$this->_element instanceof Primitive\Integer) {
139
+			throw new \UnexpectedValueException(
140
+				$this->_generateExceptionMessage(Element::TYPE_INTEGER));
141
+		}
142
+		return $this->_element;
143
+	}
144
+
145
+	/**
146
+	 * Get the wrapped element as a bit string type.
147
+	 *
148
+	 * @throws \UnexpectedValueException If the element is not a bit string
149
+	 *
150
+	 * @return \Sop\ASN1\Type\Primitive\BitString
151
+	 */
152
+	public function asBitString(): Primitive\BitString
153
+	{
154
+		if (!$this->_element instanceof Primitive\BitString) {
155
+			throw new \UnexpectedValueException(
156
+				$this->_generateExceptionMessage(Element::TYPE_BIT_STRING));
157
+		}
158
+		return $this->_element;
159
+	}
160
+
161
+	/**
162
+	 * Get the wrapped element as an octet string type.
163
+	 *
164
+	 * @throws \UnexpectedValueException If the element is not an octet string
165
+	 *
166
+	 * @return \Sop\ASN1\Type\Primitive\OctetString
167
+	 */
168
+	public function asOctetString(): Primitive\OctetString
169
+	{
170
+		if (!$this->_element instanceof Primitive\OctetString) {
171
+			throw new \UnexpectedValueException(
172
+				$this->_generateExceptionMessage(Element::TYPE_OCTET_STRING));
173
+		}
174
+		return $this->_element;
175
+	}
176
+
177
+	/**
178
+	 * Get the wrapped element as a null type.
179
+	 *
180
+	 * @throws \UnexpectedValueException If the element is not a null
181
+	 *
182
+	 * @return \Sop\ASN1\Type\Primitive\NullType
183
+	 */
184
+	public function asNull(): Primitive\NullType
185
+	{
186
+		if (!$this->_element instanceof Primitive\NullType) {
187
+			throw new \UnexpectedValueException(
188
+				$this->_generateExceptionMessage(Element::TYPE_NULL));
189
+		}
190
+		return $this->_element;
191
+	}
192
+
193
+	/**
194
+	 * Get the wrapped element as an object identifier type.
195
+	 *
196
+	 * @throws \UnexpectedValueException If the element is not an object identifier
197
+	 *
198
+	 * @return \Sop\ASN1\Type\Primitive\ObjectIdentifier
199
+	 */
200
+	public function asObjectIdentifier(): Primitive\ObjectIdentifier
201
+	{
202
+		if (!$this->_element instanceof Primitive\ObjectIdentifier) {
203
+			throw new \UnexpectedValueException(
204
+				$this->_generateExceptionMessage(Element::TYPE_OBJECT_IDENTIFIER));
205
+		}
206
+		return $this->_element;
207
+	}
208
+
209
+	/**
210
+	 * Get the wrapped element as an object descriptor type.
211
+	 *
212
+	 * @throws \UnexpectedValueException If the element is not an object descriptor
213
+	 *
214
+	 * @return \Sop\ASN1\Type\Primitive\ObjectDescriptor
215
+	 */
216
+	public function asObjectDescriptor(): Primitive\ObjectDescriptor
217
+	{
218
+		if (!$this->_element instanceof Primitive\ObjectDescriptor) {
219
+			throw new \UnexpectedValueException(
220
+				$this->_generateExceptionMessage(Element::TYPE_OBJECT_DESCRIPTOR));
221
+		}
222
+		return $this->_element;
223
+	}
224
+
225
+	/**
226
+	 * Get the wrapped element as a real type.
227
+	 *
228
+	 * @throws \UnexpectedValueException If the element is not a real
229
+	 *
230
+	 * @return \Sop\ASN1\Type\Primitive\Real
231
+	 */
232
+	public function asReal(): Primitive\Real
233
+	{
234
+		if (!$this->_element instanceof Primitive\Real) {
235
+			throw new \UnexpectedValueException(
236
+				$this->_generateExceptionMessage(Element::TYPE_REAL));
237
+		}
238
+		return $this->_element;
239
+	}
240
+
241
+	/**
242
+	 * Get the wrapped element as an enumerated type.
243
+	 *
244
+	 * @throws \UnexpectedValueException If the element is not an enumerated
245
+	 *
246
+	 * @return \Sop\ASN1\Type\Primitive\Enumerated
247
+	 */
248
+	public function asEnumerated(): Primitive\Enumerated
249
+	{
250
+		if (!$this->_element instanceof Primitive\Enumerated) {
251
+			throw new \UnexpectedValueException(
252
+				$this->_generateExceptionMessage(Element::TYPE_ENUMERATED));
253
+		}
254
+		return $this->_element;
255
+	}
256
+
257
+	/**
258
+	 * Get the wrapped element as a UTF8 string type.
259
+	 *
260
+	 * @throws \UnexpectedValueException If the element is not a UTF8 string
261
+	 *
262
+	 * @return \Sop\ASN1\Type\Primitive\UTF8String
263
+	 */
264
+	public function asUTF8String(): Primitive\UTF8String
265
+	{
266
+		if (!$this->_element instanceof Primitive\UTF8String) {
267
+			throw new \UnexpectedValueException(
268
+				$this->_generateExceptionMessage(Element::TYPE_UTF8_STRING));
269
+		}
270
+		return $this->_element;
271
+	}
272
+
273
+	/**
274
+	 * Get the wrapped element as a relative OID type.
275
+	 *
276
+	 * @throws \UnexpectedValueException If the element is not a relative OID
277
+	 *
278
+	 * @return \Sop\ASN1\Type\Primitive\RelativeOID
279
+	 */
280
+	public function asRelativeOID(): Primitive\RelativeOID
281
+	{
282
+		if (!$this->_element instanceof Primitive\RelativeOID) {
283
+			throw new \UnexpectedValueException(
284
+				$this->_generateExceptionMessage(Element::TYPE_RELATIVE_OID));
285
+		}
286
+		return $this->_element;
287
+	}
288
+
289
+	/**
290
+	 * Get the wrapped element as a sequence type.
291
+	 *
292
+	 * @throws \UnexpectedValueException If the element is not a sequence
293
+	 *
294
+	 * @return \Sop\ASN1\Type\Constructed\Sequence
295
+	 */
296
+	public function asSequence(): Constructed\Sequence
297
+	{
298
+		if (!$this->_element instanceof Constructed\Sequence) {
299
+			throw new \UnexpectedValueException(
300
+				$this->_generateExceptionMessage(Element::TYPE_SEQUENCE));
301
+		}
302
+		return $this->_element;
303
+	}
304
+
305
+	/**
306
+	 * Get the wrapped element as a set type.
307
+	 *
308
+	 * @throws \UnexpectedValueException If the element is not a set
309
+	 *
310
+	 * @return \Sop\ASN1\Type\Constructed\Set
311
+	 */
312
+	public function asSet(): Constructed\Set
313
+	{
314
+		if (!$this->_element instanceof Constructed\Set) {
315
+			throw new \UnexpectedValueException(
316
+				$this->_generateExceptionMessage(Element::TYPE_SET));
317
+		}
318
+		return $this->_element;
319
+	}
320
+
321
+	/**
322
+	 * Get the wrapped element as a numeric string type.
323
+	 *
324
+	 * @throws \UnexpectedValueException If the element is not a numeric string
325
+	 *
326
+	 * @return \Sop\ASN1\Type\Primitive\NumericString
327
+	 */
328
+	public function asNumericString(): Primitive\NumericString
329
+	{
330
+		if (!$this->_element instanceof Primitive\NumericString) {
331
+			throw new \UnexpectedValueException(
332
+				$this->_generateExceptionMessage(Element::TYPE_NUMERIC_STRING));
333
+		}
334
+		return $this->_element;
335
+	}
336
+
337
+	/**
338
+	 * Get the wrapped element as a printable string type.
339
+	 *
340
+	 * @throws \UnexpectedValueException If the element is not a printable
341
+	 *                                   string
342
+	 *
343
+	 * @return \Sop\ASN1\Type\Primitive\PrintableString
344
+	 */
345
+	public function asPrintableString(): Primitive\PrintableString
346
+	{
347
+		if (!$this->_element instanceof Primitive\PrintableString) {
348
+			throw new \UnexpectedValueException(
349
+				$this->_generateExceptionMessage(Element::TYPE_PRINTABLE_STRING));
350
+		}
351
+		return $this->_element;
352
+	}
353
+
354
+	/**
355
+	 * Get the wrapped element as a T61 string type.
356
+	 *
357
+	 * @throws \UnexpectedValueException If the element is not a T61 string
358
+	 *
359
+	 * @return \Sop\ASN1\Type\Primitive\T61String
360
+	 */
361
+	public function asT61String(): Primitive\T61String
362
+	{
363
+		if (!$this->_element instanceof Primitive\T61String) {
364
+			throw new \UnexpectedValueException(
365
+				$this->_generateExceptionMessage(Element::TYPE_T61_STRING));
366
+		}
367
+		return $this->_element;
368
+	}
369
+
370
+	/**
371
+	 * Get the wrapped element as a videotex string type.
372
+	 *
373
+	 * @throws \UnexpectedValueException If the element is not a videotex string
374
+	 *
375
+	 * @return \Sop\ASN1\Type\Primitive\VideotexString
376
+	 */
377
+	public function asVideotexString(): Primitive\VideotexString
378
+	{
379
+		if (!$this->_element instanceof Primitive\VideotexString) {
380
+			throw new \UnexpectedValueException(
381
+				$this->_generateExceptionMessage(Element::TYPE_VIDEOTEX_STRING));
382
+		}
383
+		return $this->_element;
384
+	}
385
+
386
+	/**
387
+	 * Get the wrapped element as a IA5 string type.
388
+	 *
389
+	 * @throws \UnexpectedValueException If the element is not a IA5 string
390
+	 *
391
+	 * @return \Sop\ASN1\Type\Primitive\IA5String
392
+	 */
393
+	public function asIA5String(): Primitive\IA5String
394
+	{
395
+		if (!$this->_element instanceof Primitive\IA5String) {
396
+			throw new \UnexpectedValueException(
397
+				$this->_generateExceptionMessage(Element::TYPE_IA5_STRING));
398
+		}
399
+		return $this->_element;
400
+	}
401
+
402
+	/**
403
+	 * Get the wrapped element as an UTC time type.
404
+	 *
405
+	 * @throws \UnexpectedValueException If the element is not a UTC time
406
+	 *
407
+	 * @return \Sop\ASN1\Type\Primitive\UTCTime
408
+	 */
409
+	public function asUTCTime(): Primitive\UTCTime
410
+	{
411
+		if (!$this->_element instanceof Primitive\UTCTime) {
412
+			throw new \UnexpectedValueException(
413
+				$this->_generateExceptionMessage(Element::TYPE_UTC_TIME));
414
+		}
415
+		return $this->_element;
416
+	}
417
+
418
+	/**
419
+	 * Get the wrapped element as a generalized time type.
420
+	 *
421
+	 * @throws \UnexpectedValueException If the element is not a generalized time
422
+	 *
423
+	 * @return \Sop\ASN1\Type\Primitive\GeneralizedTime
424
+	 */
425
+	public function asGeneralizedTime(): Primitive\GeneralizedTime
426
+	{
427
+		if (!$this->_element instanceof Primitive\GeneralizedTime) {
428
+			throw new \UnexpectedValueException(
429
+				$this->_generateExceptionMessage(Element::TYPE_GENERALIZED_TIME));
430
+		}
431
+		return $this->_element;
432
+	}
433
+
434
+	/**
435
+	 * Get the wrapped element as a graphic string type.
436
+	 *
437
+	 * @throws \UnexpectedValueException If the element is not a graphic string
438
+	 *
439
+	 * @return \Sop\ASN1\Type\Primitive\GraphicString
440
+	 */
441
+	public function asGraphicString(): Primitive\GraphicString
442
+	{
443
+		if (!$this->_element instanceof Primitive\GraphicString) {
444
+			throw new \UnexpectedValueException(
445
+				$this->_generateExceptionMessage(Element::TYPE_GRAPHIC_STRING));
446
+		}
447
+		return $this->_element;
448
+	}
449
+
450
+	/**
451
+	 * Get the wrapped element as a visible string type.
452
+	 *
453
+	 * @throws \UnexpectedValueException If the element is not a visible string
454
+	 *
455
+	 * @return \Sop\ASN1\Type\Primitive\VisibleString
456
+	 */
457
+	public function asVisibleString(): Primitive\VisibleString
458
+	{
459
+		if (!$this->_element instanceof Primitive\VisibleString) {
460
+			throw new \UnexpectedValueException(
461
+				$this->_generateExceptionMessage(Element::TYPE_VISIBLE_STRING));
462
+		}
463
+		return $this->_element;
464
+	}
465
+
466
+	/**
467
+	 * Get the wrapped element as a general string type.
468
+	 *
469
+	 * @throws \UnexpectedValueException If the element is not general string
470
+	 *
471
+	 * @return \Sop\ASN1\Type\Primitive\GeneralString
472
+	 */
473
+	public function asGeneralString(): Primitive\GeneralString
474
+	{
475
+		if (!$this->_element instanceof Primitive\GeneralString) {
476
+			throw new \UnexpectedValueException(
477
+				$this->_generateExceptionMessage(Element::TYPE_GENERAL_STRING));
478
+		}
479
+		return $this->_element;
480
+	}
481
+
482
+	/**
483
+	 * Get the wrapped element as a universal string type.
484
+	 *
485
+	 * @throws \UnexpectedValueException If the element is not a universal string
486
+	 *
487
+	 * @return \Sop\ASN1\Type\Primitive\UniversalString
488
+	 */
489
+	public function asUniversalString(): Primitive\UniversalString
490
+	{
491
+		if (!$this->_element instanceof Primitive\UniversalString) {
492
+			throw new \UnexpectedValueException(
493
+				$this->_generateExceptionMessage(Element::TYPE_UNIVERSAL_STRING));
494
+		}
495
+		return $this->_element;
496
+	}
497
+
498
+	/**
499
+	 * Get the wrapped element as a character string type.
500
+	 *
501
+	 * @throws \UnexpectedValueException If the element is not a character string
502
+	 *
503
+	 * @return \Sop\ASN1\Type\Primitive\CharacterString
504
+	 */
505
+	public function asCharacterString(): Primitive\CharacterString
506
+	{
507
+		if (!$this->_element instanceof Primitive\CharacterString) {
508
+			throw new \UnexpectedValueException(
509
+				$this->_generateExceptionMessage(Element::TYPE_CHARACTER_STRING));
510
+		}
511
+		return $this->_element;
512
+	}
513
+
514
+	/**
515
+	 * Get the wrapped element as a BMP string type.
516
+	 *
517
+	 * @throws \UnexpectedValueException If the element is not a bmp string
518
+	 *
519
+	 * @return \Sop\ASN1\Type\Primitive\BMPString
520
+	 */
521
+	public function asBMPString(): Primitive\BMPString
522
+	{
523
+		if (!$this->_element instanceof Primitive\BMPString) {
524
+			throw new \UnexpectedValueException(
525
+				$this->_generateExceptionMessage(Element::TYPE_BMP_STRING));
526
+		}
527
+		return $this->_element;
528
+	}
529
+
530
+	/**
531
+	 * Get the wrapped element as a constructed string type.
532
+	 *
533
+	 * @throws \UnexpectedValueException If the element is not a constructed string
534
+	 *
535
+	 * @return \Sop\ASN1\Type\Constructed\ConstructedString
536
+	 */
537
+	public function asConstructedString(): Constructed\ConstructedString
538
+	{
539
+		if (!$this->_element instanceof Constructed\ConstructedString) {
540
+			throw new \UnexpectedValueException(
541
+				$this->_generateExceptionMessage(Element::TYPE_CONSTRUCTED_STRING));
542
+		}
543
+		return $this->_element;
544
+	}
545
+
546
+	/**
547
+	 * Get the wrapped element as any string type.
548
+	 *
549
+	 * @throws \UnexpectedValueException If the element is not a string
550
+	 *
551
+	 * @return StringType
552
+	 */
553
+	public function asString(): StringType
554
+	{
555
+		if (!$this->_element instanceof StringType) {
556
+			throw new \UnexpectedValueException(
557
+				$this->_generateExceptionMessage(Element::TYPE_STRING));
558
+		}
559
+		return $this->_element;
560
+	}
561
+
562
+	/**
563
+	 * Get the wrapped element as any time type.
564
+	 *
565
+	 * @throws \UnexpectedValueException If the element is not a time
566
+	 *
567
+	 * @return TimeType
568
+	 */
569
+	public function asTime(): TimeType
570
+	{
571
+		if (!$this->_element instanceof TimeType) {
572
+			throw new \UnexpectedValueException(
573
+				$this->_generateExceptionMessage(Element::TYPE_TIME));
574
+		}
575
+		return $this->_element;
576
+	}
577
+
578
+	/**
579
+	 * {@inheritdoc}
580
+	 */
581
+	public function toDER(): string
582
+	{
583
+		return $this->_element->toDER();
584
+	}
585
+
586
+	/**
587
+	 * {@inheritdoc}
588
+	 */
589
+	public function typeClass(): int
590
+	{
591
+		return $this->_element->typeClass();
592
+	}
593
+
594
+	/**
595
+	 * {@inheritdoc}
596
+	 */
597
+	public function isConstructed(): bool
598
+	{
599
+		return $this->_element->isConstructed();
600
+	}
601
+
602
+	/**
603
+	 * {@inheritdoc}
604
+	 */
605
+	public function tag(): int
606
+	{
607
+		return $this->_element->tag();
608
+	}
609
+
610
+	/**
611
+	 * {@inheritdoc}
612
+	 */
613
+	public function isType(int $tag): bool
614
+	{
615
+		return $this->_element->isType($tag);
616
+	}
617
+
618
+	/**
619
+	 * {@inheritdoc}
620
+	 *
621
+	 * Consider using any of the `as*` accessor methods instead.
622
+	 */
623
+	public function expectType(int $tag): ElementBase
624
+	{
625
+		return $this->_element->expectType($tag);
626
+	}
627
+
628
+	/**
629
+	 * {@inheritdoc}
630
+	 */
631
+	public function isTagged(): bool
632
+	{
633
+		return $this->_element->isTagged();
634
+	}
635
+
636
+	/**
637
+	 * {@inheritdoc}
638
+	 *
639
+	 * Consider using `asTagged()` method instead and chaining
640
+	 * with `TaggedType::asExplicit()` or `TaggedType::asImplicit()`.
641
+	 */
642
+	public function expectTagged(?int $tag = null): TaggedType
643
+	{
644
+		return $this->_element->expectTagged($tag);
645
+	}
646
+
647
+	/**
648
+	 * {@inheritdoc}
649
+	 */
650
+	public function asElement(): Element
651
+	{
652
+		return $this->_element;
653
+	}
654
+
655
+	/**
656
+	 * {@inheritdoc}
657
+	 */
658
+	public function asUnspecified(): UnspecifiedType
659
+	{
660
+		return $this;
661
+	}
662
+
663
+	/**
664
+	 * Generate message for exceptions thrown by `as*` methods.
665
+	 *
666
+	 * @param int $tag Type tag of the expected element
667
+	 *
668
+	 * @return string
669
+	 */
670
+	private function _generateExceptionMessage(int $tag): string
671
+	{
672
+		return sprintf('%s expected, got %s.', Element::tagToName($tag),
673
+			$this->_typeDescriptorString());
674
+	}
675
+
676
+	/**
677
+	 * Get textual description of the wrapped element for debugging purposes.
678
+	 *
679
+	 * @return string
680
+	 */
681
+	private function _typeDescriptorString(): string
682
+	{
683
+		$type_cls = $this->_element->typeClass();
684
+		$tag = $this->_element->tag();
685
+		if (Identifier::CLASS_UNIVERSAL === $type_cls) {
686
+			return Element::tagToName($tag);
687
+		}
688
+		return Identifier::classToName($type_cls) . " TAG {$tag}";
689
+	}
690 690
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/Enumerated.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.