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.
Completed
Push — php72 ( 57c34e...46de60 )
by Joni
02:02
created
lib/ASN1/Type/Primitive/Integer.php 1 patch
Indentation   +148 added lines, -148 removed lines patch added patch discarded remove patch
@@ -17,161 +17,161 @@
 block discarded – undo
17 17
  */
18 18
 class Integer extends Element
19 19
 {
20
-    use UniversalClass;
21
-    use PrimitiveType;
20
+	use UniversalClass;
21
+	use PrimitiveType;
22 22
 
23
-    /**
24
-     * The number.
25
-     *
26
-     * @var BigInt
27
-     */
28
-    private $_number;
23
+	/**
24
+	 * The number.
25
+	 *
26
+	 * @var BigInt
27
+	 */
28
+	private $_number;
29 29
 
30
-    /**
31
-     * Constructor.
32
-     *
33
-     * @param int|string $number Base 10 integer
34
-     */
35
-    public function __construct($number)
36
-    {
37
-        $this->_typeTag = self::TYPE_INTEGER;
38
-        if (!self::_validateNumber($number)) {
39
-            $var = is_scalar($number) ? strval($number) : gettype($number);
40
-            throw new \InvalidArgumentException("'${var}' is not a valid number.");
41
-        }
42
-        $this->_number = new BigInt($number);
43
-    }
30
+	/**
31
+	 * Constructor.
32
+	 *
33
+	 * @param int|string $number Base 10 integer
34
+	 */
35
+	public function __construct($number)
36
+	{
37
+		$this->_typeTag = self::TYPE_INTEGER;
38
+		if (!self::_validateNumber($number)) {
39
+			$var = is_scalar($number) ? strval($number) : gettype($number);
40
+			throw new \InvalidArgumentException("'${var}' is not a valid number.");
41
+		}
42
+		$this->_number = new BigInt($number);
43
+	}
44 44
 
45
-    /**
46
-     * Get the number as a base 10.
47
-     *
48
-     * @return string Integer as a string
49
-     */
50
-    public function number(): string
51
-    {
52
-        return $this->_number->base10();
53
-    }
45
+	/**
46
+	 * Get the number as a base 10.
47
+	 *
48
+	 * @return string Integer as a string
49
+	 */
50
+	public function number(): string
51
+	{
52
+		return $this->_number->base10();
53
+	}
54 54
 
55
-    /**
56
-     * Get the number as an integer type.
57
-     *
58
-     * @return int
59
-     */
60
-    public function intNumber(): int
61
-    {
62
-        return $this->_number->intVal();
63
-    }
55
+	/**
56
+	 * Get the number as an integer type.
57
+	 *
58
+	 * @return int
59
+	 */
60
+	public function intNumber(): int
61
+	{
62
+		return $this->_number->intVal();
63
+	}
64 64
 
65
-    /**
66
-     * {@inheritdoc}
67
-     */
68
-    protected function _encodedContentDER(): string
69
-    {
70
-        $num = $this->_number->gmpObj();
71
-        switch (gmp_sign($num)) {
72
-            // positive
73
-            case 1:
74
-                return self::_encodePositiveInteger($num);
75
-            // negative
76
-            case -1:
77
-                return self::_encodeNegativeInteger($num);
78
-        }
79
-        // zero
80
-        return "\0";
81
-    }
65
+	/**
66
+	 * {@inheritdoc}
67
+	 */
68
+	protected function _encodedContentDER(): string
69
+	{
70
+		$num = $this->_number->gmpObj();
71
+		switch (gmp_sign($num)) {
72
+			// positive
73
+			case 1:
74
+				return self::_encodePositiveInteger($num);
75
+			// negative
76
+			case -1:
77
+				return self::_encodeNegativeInteger($num);
78
+		}
79
+		// zero
80
+		return "\0";
81
+	}
82 82
 
83
-    /**
84
-     * {@inheritdoc}
85
-     */
86
-    protected static function _decodeFromDER(Identifier $identifier,
87
-        string $data, int &$offset): ElementBase
88
-    {
89
-        $idx = $offset;
90
-        $length = Length::expectFromDER($data, $idx)->intLength();
91
-        $bytes = substr($data, $idx, $length);
92
-        $idx += $length;
93
-        $neg = ord($bytes[0]) & 0x80;
94
-        // negative, apply inversion of two's complement
95
-        if ($neg) {
96
-            $len = strlen($bytes);
97
-            for ($i = 0; $i < $len; ++$i) {
98
-                $bytes[$i] = ~$bytes[$i];
99
-            }
100
-        }
101
-        $num = gmp_init(bin2hex($bytes), 16);
102
-        // negative, apply addition of two's complement
103
-        // and produce negative result
104
-        if ($neg) {
105
-            $num = gmp_neg($num + 1);
106
-        }
107
-        $offset = $idx;
108
-        // late static binding since enumerated extends integer type
109
-        return new static(gmp_strval($num, 10));
110
-    }
83
+	/**
84
+	 * {@inheritdoc}
85
+	 */
86
+	protected static function _decodeFromDER(Identifier $identifier,
87
+		string $data, int &$offset): ElementBase
88
+	{
89
+		$idx = $offset;
90
+		$length = Length::expectFromDER($data, $idx)->intLength();
91
+		$bytes = substr($data, $idx, $length);
92
+		$idx += $length;
93
+		$neg = ord($bytes[0]) & 0x80;
94
+		// negative, apply inversion of two's complement
95
+		if ($neg) {
96
+			$len = strlen($bytes);
97
+			for ($i = 0; $i < $len; ++$i) {
98
+				$bytes[$i] = ~$bytes[$i];
99
+			}
100
+		}
101
+		$num = gmp_init(bin2hex($bytes), 16);
102
+		// negative, apply addition of two's complement
103
+		// and produce negative result
104
+		if ($neg) {
105
+			$num = gmp_neg($num + 1);
106
+		}
107
+		$offset = $idx;
108
+		// late static binding since enumerated extends integer type
109
+		return new static(gmp_strval($num, 10));
110
+	}
111 111
 
112
-    /**
113
-     * Encode positive integer to DER content.
114
-     *
115
-     * @param \GMP $num
116
-     *
117
-     * @return string
118
-     */
119
-    private static function _encodePositiveInteger(\GMP $num): string
120
-    {
121
-        $bin = gmp_export($num, 1, GMP_MSW_FIRST | GMP_BIG_ENDIAN);
122
-        // if first bit is 1, prepend full zero byte
123
-        // to represent positive two's complement
124
-        if (ord($bin[0]) & 0x80) {
125
-            $bin = chr(0x00) . $bin;
126
-        }
127
-        return $bin;
128
-    }
112
+	/**
113
+	 * Encode positive integer to DER content.
114
+	 *
115
+	 * @param \GMP $num
116
+	 *
117
+	 * @return string
118
+	 */
119
+	private static function _encodePositiveInteger(\GMP $num): string
120
+	{
121
+		$bin = gmp_export($num, 1, GMP_MSW_FIRST | GMP_BIG_ENDIAN);
122
+		// if first bit is 1, prepend full zero byte
123
+		// to represent positive two's complement
124
+		if (ord($bin[0]) & 0x80) {
125
+			$bin = chr(0x00) . $bin;
126
+		}
127
+		return $bin;
128
+	}
129 129
 
130
-    /**
131
-     * Encode negative integer to DER content.
132
-     *
133
-     * @param \GMP $num
134
-     *
135
-     * @return string
136
-     */
137
-    private static function _encodeNegativeInteger(\GMP $num): string
138
-    {
139
-        $num = gmp_abs($num);
140
-        // compute number of bytes required
141
-        $width = 1;
142
-        if ($num > 128) {
143
-            $tmp = $num;
144
-            do {
145
-                ++$width;
146
-                $tmp >>= 8;
147
-            } while ($tmp > 128);
148
-        }
149
-        // compute two's complement 2^n - x
150
-        $num = gmp_pow('2', 8 * $width) - $num;
151
-        $bin = gmp_export($num, 1, GMP_MSW_FIRST | GMP_BIG_ENDIAN);
152
-        // if first bit is 0, prepend full inverted byte
153
-        // to represent negative two's complement
154
-        if (!(ord($bin[0]) & 0x80)) {
155
-            $bin = chr(0xff) . $bin;
156
-        }
157
-        return $bin;
158
-    }
130
+	/**
131
+	 * Encode negative integer to DER content.
132
+	 *
133
+	 * @param \GMP $num
134
+	 *
135
+	 * @return string
136
+	 */
137
+	private static function _encodeNegativeInteger(\GMP $num): string
138
+	{
139
+		$num = gmp_abs($num);
140
+		// compute number of bytes required
141
+		$width = 1;
142
+		if ($num > 128) {
143
+			$tmp = $num;
144
+			do {
145
+				++$width;
146
+				$tmp >>= 8;
147
+			} while ($tmp > 128);
148
+		}
149
+		// compute two's complement 2^n - x
150
+		$num = gmp_pow('2', 8 * $width) - $num;
151
+		$bin = gmp_export($num, 1, GMP_MSW_FIRST | GMP_BIG_ENDIAN);
152
+		// if first bit is 0, prepend full inverted byte
153
+		// to represent negative two's complement
154
+		if (!(ord($bin[0]) & 0x80)) {
155
+			$bin = chr(0xff) . $bin;
156
+		}
157
+		return $bin;
158
+	}
159 159
 
160
-    /**
161
-     * Test that number is valid for this context.
162
-     *
163
-     * @param mixed $num
164
-     *
165
-     * @return bool
166
-     */
167
-    private static function _validateNumber($num): bool
168
-    {
169
-        if (is_int($num)) {
170
-            return true;
171
-        }
172
-        if (is_string($num) && preg_match('/-?\d+/', $num)) {
173
-            return true;
174
-        }
175
-        return false;
176
-    }
160
+	/**
161
+	 * Test that number is valid for this context.
162
+	 *
163
+	 * @param mixed $num
164
+	 *
165
+	 * @return bool
166
+	 */
167
+	private static function _validateNumber($num): bool
168
+	{
169
+		if (is_int($num)) {
170
+			return true;
171
+		}
172
+		if (is_string($num) && preg_match('/-?\d+/', $num)) {
173
+			return true;
174
+		}
175
+		return false;
176
+	}
177 177
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/ObjectIdentifier.php 1 patch
Indentation   +185 added lines, -185 removed lines patch added patch discarded remove patch
@@ -17,199 +17,199 @@
 block discarded – undo
17 17
  */
18 18
 class ObjectIdentifier extends Element
19 19
 {
20
-    use UniversalClass;
21
-    use PrimitiveType;
20
+	use UniversalClass;
21
+	use PrimitiveType;
22 22
 
23
-    /**
24
-     * Object identifier in dotted format.
25
-     *
26
-     * @var string
27
-     */
28
-    protected $_oid;
23
+	/**
24
+	 * Object identifier in dotted format.
25
+	 *
26
+	 * @var string
27
+	 */
28
+	protected $_oid;
29 29
 
30
-    /**
31
-     * Object identifier split to sub ID's.
32
-     *
33
-     * @var \GMP[]
34
-     */
35
-    protected $_subids;
30
+	/**
31
+	 * Object identifier split to sub ID's.
32
+	 *
33
+	 * @var \GMP[]
34
+	 */
35
+	protected $_subids;
36 36
 
37
-    /**
38
-     * Constructor.
39
-     *
40
-     * @param string $oid OID in dotted format
41
-     */
42
-    public function __construct(string $oid)
43
-    {
44
-        $this->_oid = $oid;
45
-        $this->_subids = self::_explodeDottedOID($oid);
46
-        // if OID is non-empty
47
-        if (count($this->_subids) > 0) {
48
-            // check that at least two nodes are set
49
-            if (count($this->_subids) < 2) {
50
-                throw new \UnexpectedValueException(
51
-                    'OID must have at least two nodes.');
52
-            }
53
-            // check that root arc is in 0..2 range
54
-            if ($this->_subids[0] > 2) {
55
-                throw new \UnexpectedValueException(
56
-                    'Root arc must be in range of 0..2.');
57
-            }
58
-            // if root arc is 0 or 1, second node must be in 0..39 range
59
-            if ($this->_subids[0] < 2 && $this->_subids[1] >= 40) {
60
-                throw new \UnexpectedValueException(
61
-                    'Second node must be in 0..39 range for root arcs 0 and 1.');
62
-            }
63
-        }
64
-        $this->_typeTag = self::TYPE_OBJECT_IDENTIFIER;
65
-    }
37
+	/**
38
+	 * Constructor.
39
+	 *
40
+	 * @param string $oid OID in dotted format
41
+	 */
42
+	public function __construct(string $oid)
43
+	{
44
+		$this->_oid = $oid;
45
+		$this->_subids = self::_explodeDottedOID($oid);
46
+		// if OID is non-empty
47
+		if (count($this->_subids) > 0) {
48
+			// check that at least two nodes are set
49
+			if (count($this->_subids) < 2) {
50
+				throw new \UnexpectedValueException(
51
+					'OID must have at least two nodes.');
52
+			}
53
+			// check that root arc is in 0..2 range
54
+			if ($this->_subids[0] > 2) {
55
+				throw new \UnexpectedValueException(
56
+					'Root arc must be in range of 0..2.');
57
+			}
58
+			// if root arc is 0 or 1, second node must be in 0..39 range
59
+			if ($this->_subids[0] < 2 && $this->_subids[1] >= 40) {
60
+				throw new \UnexpectedValueException(
61
+					'Second node must be in 0..39 range for root arcs 0 and 1.');
62
+			}
63
+		}
64
+		$this->_typeTag = self::TYPE_OBJECT_IDENTIFIER;
65
+	}
66 66
 
67
-    /**
68
-     * Get OID in dotted format.
69
-     *
70
-     * @return string
71
-     */
72
-    public function oid(): string
73
-    {
74
-        return $this->_oid;
75
-    }
67
+	/**
68
+	 * Get OID in dotted format.
69
+	 *
70
+	 * @return string
71
+	 */
72
+	public function oid(): string
73
+	{
74
+		return $this->_oid;
75
+	}
76 76
 
77
-    /**
78
-     * {@inheritdoc}
79
-     */
80
-    protected function _encodedContentDER(): string
81
-    {
82
-        $subids = $this->_subids;
83
-        // encode first two subids to one according to spec section 8.19.4
84
-        if (count($subids) >= 2) {
85
-            $num = ($subids[0] * 40) + $subids[1];
86
-            array_splice($subids, 0, 2, [$num]);
87
-        }
88
-        return self::_encodeSubIDs(...$subids);
89
-    }
77
+	/**
78
+	 * {@inheritdoc}
79
+	 */
80
+	protected function _encodedContentDER(): string
81
+	{
82
+		$subids = $this->_subids;
83
+		// encode first two subids to one according to spec section 8.19.4
84
+		if (count($subids) >= 2) {
85
+			$num = ($subids[0] * 40) + $subids[1];
86
+			array_splice($subids, 0, 2, [$num]);
87
+		}
88
+		return self::_encodeSubIDs(...$subids);
89
+	}
90 90
 
91
-    /**
92
-     * {@inheritdoc}
93
-     */
94
-    protected static function _decodeFromDER(Identifier $identifier,
95
-        string $data, int &$offset): ElementBase
96
-    {
97
-        $idx = $offset;
98
-        $len = Length::expectFromDER($data, $idx)->intLength();
99
-        $subids = self::_decodeSubIDs(substr($data, $idx, $len));
100
-        $idx += $len;
101
-        // decode first subidentifier according to spec section 8.19.4
102
-        if (isset($subids[0])) {
103
-            if ($subids[0] < 80) {
104
-                [$x, $y] = gmp_div_qr($subids[0], '40');
105
-            } else {
106
-                $x = gmp_init(2, 10);
107
-                $y = $subids[0] - 80;
108
-            }
109
-            array_splice($subids, 0, 1, [$x, $y]);
110
-        }
111
-        $offset = $idx;
112
-        return new self(self::_implodeSubIDs(...$subids));
113
-    }
91
+	/**
92
+	 * {@inheritdoc}
93
+	 */
94
+	protected static function _decodeFromDER(Identifier $identifier,
95
+		string $data, int &$offset): ElementBase
96
+	{
97
+		$idx = $offset;
98
+		$len = Length::expectFromDER($data, $idx)->intLength();
99
+		$subids = self::_decodeSubIDs(substr($data, $idx, $len));
100
+		$idx += $len;
101
+		// decode first subidentifier according to spec section 8.19.4
102
+		if (isset($subids[0])) {
103
+			if ($subids[0] < 80) {
104
+				[$x, $y] = gmp_div_qr($subids[0], '40');
105
+			} else {
106
+				$x = gmp_init(2, 10);
107
+				$y = $subids[0] - 80;
108
+			}
109
+			array_splice($subids, 0, 1, [$x, $y]);
110
+		}
111
+		$offset = $idx;
112
+		return new self(self::_implodeSubIDs(...$subids));
113
+	}
114 114
 
115
-    /**
116
-     * Explode dotted OID to an array of sub ID's.
117
-     *
118
-     * @param string $oid OID in dotted format
119
-     *
120
-     * @return \GMP[] Array of GMP numbers
121
-     */
122
-    protected static function _explodeDottedOID(string $oid): array
123
-    {
124
-        $subids = [];
125
-        if (strlen($oid)) {
126
-            foreach (explode('.', $oid) as $subid) {
127
-                $n = @gmp_init($subid, 10);
128
-                if (false === $n) {
129
-                    throw new \UnexpectedValueException(
130
-                        "'${subid}' is not a number.");
131
-                }
132
-                $subids[] = $n;
133
-            }
134
-        }
135
-        return $subids;
136
-    }
115
+	/**
116
+	 * Explode dotted OID to an array of sub ID's.
117
+	 *
118
+	 * @param string $oid OID in dotted format
119
+	 *
120
+	 * @return \GMP[] Array of GMP numbers
121
+	 */
122
+	protected static function _explodeDottedOID(string $oid): array
123
+	{
124
+		$subids = [];
125
+		if (strlen($oid)) {
126
+			foreach (explode('.', $oid) as $subid) {
127
+				$n = @gmp_init($subid, 10);
128
+				if (false === $n) {
129
+					throw new \UnexpectedValueException(
130
+						"'${subid}' is not a number.");
131
+				}
132
+				$subids[] = $n;
133
+			}
134
+		}
135
+		return $subids;
136
+	}
137 137
 
138
-    /**
139
-     * Implode an array of sub IDs to dotted OID format.
140
-     *
141
-     * @param \GMP ...$subids
142
-     *
143
-     * @return string
144
-     */
145
-    protected static function _implodeSubIDs(\GMP ...$subids): string
146
-    {
147
-        return implode('.',
148
-            array_map(function ($num) {
149
-                return gmp_strval($num, 10);
150
-            }, $subids));
151
-    }
138
+	/**
139
+	 * Implode an array of sub IDs to dotted OID format.
140
+	 *
141
+	 * @param \GMP ...$subids
142
+	 *
143
+	 * @return string
144
+	 */
145
+	protected static function _implodeSubIDs(\GMP ...$subids): string
146
+	{
147
+		return implode('.',
148
+			array_map(function ($num) {
149
+				return gmp_strval($num, 10);
150
+			}, $subids));
151
+	}
152 152
 
153
-    /**
154
-     * Encode sub ID's to DER.
155
-     *
156
-     * @param \GMP ...$subids
157
-     *
158
-     * @return string
159
-     */
160
-    protected static function _encodeSubIDs(\GMP ...$subids): string
161
-    {
162
-        $data = '';
163
-        foreach ($subids as $subid) {
164
-            // if number fits to one base 128 byte
165
-            if ($subid < 128) {
166
-                $data .= chr(intval($subid));
167
-            } else { // encode to multiple bytes
168
-                $bytes = [];
169
-                do {
170
-                    array_unshift($bytes, 0x7f & gmp_intval($subid));
171
-                    $subid >>= 7;
172
-                } while ($subid > 0);
173
-                // all bytes except last must have bit 8 set to one
174
-                foreach (array_splice($bytes, 0, -1) as $byte) {
175
-                    $data .= chr(0x80 | $byte);
176
-                }
177
-                $data .= chr(reset($bytes));
178
-            }
179
-        }
180
-        return $data;
181
-    }
153
+	/**
154
+	 * Encode sub ID's to DER.
155
+	 *
156
+	 * @param \GMP ...$subids
157
+	 *
158
+	 * @return string
159
+	 */
160
+	protected static function _encodeSubIDs(\GMP ...$subids): string
161
+	{
162
+		$data = '';
163
+		foreach ($subids as $subid) {
164
+			// if number fits to one base 128 byte
165
+			if ($subid < 128) {
166
+				$data .= chr(intval($subid));
167
+			} else { // encode to multiple bytes
168
+				$bytes = [];
169
+				do {
170
+					array_unshift($bytes, 0x7f & gmp_intval($subid));
171
+					$subid >>= 7;
172
+				} while ($subid > 0);
173
+				// all bytes except last must have bit 8 set to one
174
+				foreach (array_splice($bytes, 0, -1) as $byte) {
175
+					$data .= chr(0x80 | $byte);
176
+				}
177
+				$data .= chr(reset($bytes));
178
+			}
179
+		}
180
+		return $data;
181
+	}
182 182
 
183
-    /**
184
-     * Decode sub ID's from DER data.
185
-     *
186
-     * @param string $data
187
-     *
188
-     * @throws DecodeException
189
-     *
190
-     * @return \GMP[] Array of GMP numbers
191
-     */
192
-    protected static function _decodeSubIDs(string $data): array
193
-    {
194
-        $subids = [];
195
-        $idx = 0;
196
-        $end = strlen($data);
197
-        while ($idx < $end) {
198
-            $num = gmp_init('0', 10);
199
-            while (true) {
200
-                if ($idx >= $end) {
201
-                    throw new DecodeException('Unexpected end of data.');
202
-                }
203
-                $byte = ord($data[$idx++]);
204
-                $num |= $byte & 0x7f;
205
-                // bit 8 of the last octet is zero
206
-                if (!($byte & 0x80)) {
207
-                    break;
208
-                }
209
-                $num <<= 7;
210
-            }
211
-            $subids[] = $num;
212
-        }
213
-        return $subids;
214
-    }
183
+	/**
184
+	 * Decode sub ID's from DER data.
185
+	 *
186
+	 * @param string $data
187
+	 *
188
+	 * @throws DecodeException
189
+	 *
190
+	 * @return \GMP[] Array of GMP numbers
191
+	 */
192
+	protected static function _decodeSubIDs(string $data): array
193
+	{
194
+		$subids = [];
195
+		$idx = 0;
196
+		$end = strlen($data);
197
+		while ($idx < $end) {
198
+			$num = gmp_init('0', 10);
199
+			while (true) {
200
+				if ($idx >= $end) {
201
+					throw new DecodeException('Unexpected end of data.');
202
+				}
203
+				$byte = ord($data[$idx++]);
204
+				$num |= $byte & 0x7f;
205
+				// bit 8 of the last octet is zero
206
+				if (!($byte & 0x80)) {
207
+					break;
208
+				}
209
+				$num <<= 7;
210
+			}
211
+			$subids[] = $num;
212
+		}
213
+		return $subids;
214
+	}
215 215
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/PrintableString.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -12,25 +12,25 @@
 block discarded – undo
12 12
  */
13 13
 class PrintableString extends PrimitiveString
14 14
 {
15
-    use UniversalClass;
15
+	use UniversalClass;
16 16
 
17
-    /**
18
-     * Constructor.
19
-     *
20
-     * @param string $string
21
-     */
22
-    public function __construct(string $string)
23
-    {
24
-        $this->_typeTag = self::TYPE_PRINTABLE_STRING;
25
-        parent::__construct($string);
26
-    }
17
+	/**
18
+	 * Constructor.
19
+	 *
20
+	 * @param string $string
21
+	 */
22
+	public function __construct(string $string)
23
+	{
24
+		$this->_typeTag = self::TYPE_PRINTABLE_STRING;
25
+		parent::__construct($string);
26
+	}
27 27
 
28
-    /**
29
-     * {@inheritdoc}
30
-     */
31
-    protected function _validateString(string $string): bool
32
-    {
33
-        $chars = preg_quote(" '()+,-./:=?]", '/');
34
-        return 0 == preg_match('/[^A-Za-z0-9' . $chars . ']/', $string);
35
-    }
28
+	/**
29
+	 * {@inheritdoc}
30
+	 */
31
+	protected function _validateString(string $string): bool
32
+	{
33
+		$chars = preg_quote(" '()+,-./:=?]", '/');
34
+		return 0 == preg_match('/[^A-Za-z0-9' . $chars . ']/', $string);
35
+	}
36 36
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/VisibleString.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -12,24 +12,24 @@
 block discarded – undo
12 12
  */
13 13
 class VisibleString extends PrimitiveString
14 14
 {
15
-    use UniversalClass;
15
+	use UniversalClass;
16 16
 
17
-    /**
18
-     * Constructor.
19
-     *
20
-     * @param string $string
21
-     */
22
-    public function __construct(string $string)
23
-    {
24
-        $this->_typeTag = self::TYPE_VISIBLE_STRING;
25
-        parent::__construct($string);
26
-    }
17
+	/**
18
+	 * Constructor.
19
+	 *
20
+	 * @param string $string
21
+	 */
22
+	public function __construct(string $string)
23
+	{
24
+		$this->_typeTag = self::TYPE_VISIBLE_STRING;
25
+		parent::__construct($string);
26
+	}
27 27
 
28
-    /**
29
-     * {@inheritdoc}
30
-     */
31
-    protected function _validateString(string $string): bool
32
-    {
33
-        return 0 == preg_match('/[^\x20-\x7e]/', $string);
34
-    }
28
+	/**
29
+	 * {@inheritdoc}
30
+	 */
31
+	protected function _validateString(string $string): bool
32
+	{
33
+		return 0 == preg_match('/[^\x20-\x7e]/', $string);
34
+	}
35 35
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/EOC.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -17,38 +17,38 @@
 block discarded – undo
17 17
  */
18 18
 class EOC extends Element
19 19
 {
20
-    use UniversalClass;
21
-    use PrimitiveType;
20
+	use UniversalClass;
21
+	use PrimitiveType;
22 22
 
23
-    /**
24
-     * Constructor.
25
-     */
26
-    public function __construct()
27
-    {
28
-        $this->_typeTag = self::TYPE_EOC;
29
-    }
23
+	/**
24
+	 * Constructor.
25
+	 */
26
+	public function __construct()
27
+	{
28
+		$this->_typeTag = self::TYPE_EOC;
29
+	}
30 30
 
31
-    /**
32
-     * {@inheritdoc}
33
-     */
34
-    protected function _encodedContentDER(): string
35
-    {
36
-        return '';
37
-    }
31
+	/**
32
+	 * {@inheritdoc}
33
+	 */
34
+	protected function _encodedContentDER(): string
35
+	{
36
+		return '';
37
+	}
38 38
 
39
-    /**
40
-     * {@inheritdoc}
41
-     */
42
-    protected static function _decodeFromDER(Identifier $identifier,
43
-        string $data, int &$offset): ElementBase
44
-    {
45
-        $idx = $offset;
46
-        if (!$identifier->isPrimitive()) {
47
-            throw new DecodeException('EOC value must be primitive.');
48
-        }
49
-        // EOC type has always zero length
50
-        Length::expectFromDER($data, $idx, 0);
51
-        $offset = $idx;
52
-        return new self();
53
-    }
39
+	/**
40
+	 * {@inheritdoc}
41
+	 */
42
+	protected static function _decodeFromDER(Identifier $identifier,
43
+		string $data, int &$offset): ElementBase
44
+	{
45
+		$idx = $offset;
46
+		if (!$identifier->isPrimitive()) {
47
+			throw new DecodeException('EOC value must be primitive.');
48
+		}
49
+		// EOC type has always zero length
50
+		Length::expectFromDER($data, $idx, 0);
51
+		$offset = $idx;
52
+		return new self();
53
+	}
54 54
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/VideotexString.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -12,25 +12,25 @@
 block discarded – undo
12 12
  */
13 13
 class VideotexString extends PrimitiveString
14 14
 {
15
-    use UniversalClass;
15
+	use UniversalClass;
16 16
 
17
-    /**
18
-     * Constructor.
19
-     *
20
-     * @param string $string
21
-     */
22
-    public function __construct(string $string)
23
-    {
24
-        $this->_typeTag = self::TYPE_VIDEOTEX_STRING;
25
-        parent::__construct($string);
26
-    }
17
+	/**
18
+	 * Constructor.
19
+	 *
20
+	 * @param string $string
21
+	 */
22
+	public function __construct(string $string)
23
+	{
24
+		$this->_typeTag = self::TYPE_VIDEOTEX_STRING;
25
+		parent::__construct($string);
26
+	}
27 27
 
28
-    /**
29
-     * {@inheritdoc}
30
-     */
31
-    protected function _validateString(string $string): bool
32
-    {
33
-        // allow everything
34
-        return true;
35
-    }
28
+	/**
29
+	 * {@inheritdoc}
30
+	 */
31
+	protected function _validateString(string $string): bool
32
+	{
33
+		// allow everything
34
+		return true;
35
+	}
36 36
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/BMPString.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -15,28 +15,28 @@
 block discarded – undo
15 15
  */
16 16
 class BMPString extends PrimitiveString
17 17
 {
18
-    use UniversalClass;
18
+	use UniversalClass;
19 19
 
20
-    /**
21
-     * Constructor.
22
-     *
23
-     * @param string $string
24
-     */
25
-    public function __construct(string $string)
26
-    {
27
-        $this->_typeTag = self::TYPE_BMP_STRING;
28
-        parent::__construct($string);
29
-    }
20
+	/**
21
+	 * Constructor.
22
+	 *
23
+	 * @param string $string
24
+	 */
25
+	public function __construct(string $string)
26
+	{
27
+		$this->_typeTag = self::TYPE_BMP_STRING;
28
+		parent::__construct($string);
29
+	}
30 30
 
31
-    /**
32
-     * {@inheritdoc}
33
-     */
34
-    protected function _validateString(string $string): bool
35
-    {
36
-        // UCS-2 has fixed with of 2 octets (16 bits)
37
-        if (0 !== strlen($string) % 2) {
38
-            return false;
39
-        }
40
-        return true;
41
-    }
31
+	/**
32
+	 * {@inheritdoc}
33
+	 */
34
+	protected function _validateString(string $string): bool
35
+	{
36
+		// UCS-2 has fixed with of 2 octets (16 bits)
37
+		if (0 !== strlen($string) % 2) {
38
+			return false;
39
+		}
40
+		return true;
41
+	}
42 42
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/RelativeOID.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -13,36 +13,36 @@
 block discarded – undo
13 13
  */
14 14
 class RelativeOID extends ObjectIdentifier
15 15
 {
16
-    /**
17
-     * Constructor.
18
-     *
19
-     * @param string $oid OID in dotted format
20
-     */
21
-    public function __construct(string $oid)
22
-    {
23
-        $this->_oid = $oid;
24
-        $this->_subids = self::_explodeDottedOID($oid);
25
-        $this->_typeTag = self::TYPE_RELATIVE_OID;
26
-    }
16
+	/**
17
+	 * Constructor.
18
+	 *
19
+	 * @param string $oid OID in dotted format
20
+	 */
21
+	public function __construct(string $oid)
22
+	{
23
+		$this->_oid = $oid;
24
+		$this->_subids = self::_explodeDottedOID($oid);
25
+		$this->_typeTag = self::TYPE_RELATIVE_OID;
26
+	}
27 27
 
28
-    /**
29
-     * {@inheritdoc}
30
-     */
31
-    protected function _encodedContentDER(): string
32
-    {
33
-        return self::_encodeSubIDs(...$this->_subids);
34
-    }
28
+	/**
29
+	 * {@inheritdoc}
30
+	 */
31
+	protected function _encodedContentDER(): string
32
+	{
33
+		return self::_encodeSubIDs(...$this->_subids);
34
+	}
35 35
 
36
-    /**
37
-     * {@inheritdoc}
38
-     */
39
-    protected static function _decodeFromDER(Identifier $identifier,
40
-        string $data, int &$offset): ElementBase
41
-    {
42
-        $idx = $offset;
43
-        $len = Length::expectFromDER($data, $idx)->intLength();
44
-        $subids = self::_decodeSubIDs(substr($data, $idx, $len));
45
-        $offset = $idx + $len;
46
-        return new self(self::_implodeSubIDs(...$subids));
47
-    }
36
+	/**
37
+	 * {@inheritdoc}
38
+	 */
39
+	protected static function _decodeFromDER(Identifier $identifier,
40
+		string $data, int &$offset): ElementBase
41
+	{
42
+		$idx = $offset;
43
+		$len = Length::expectFromDER($data, $idx)->intLength();
44
+		$subids = self::_decodeSubIDs(substr($data, $idx, $len));
45
+		$offset = $idx + $len;
46
+		return new self(self::_implodeSubIDs(...$subids));
47
+	}
48 48
 }
Please login to merge, or discard this patch.
lib/ASN1/Type/Primitive/GraphicString.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -12,25 +12,25 @@
 block discarded – undo
12 12
  */
13 13
 class GraphicString extends PrimitiveString
14 14
 {
15
-    use UniversalClass;
15
+	use UniversalClass;
16 16
 
17
-    /**
18
-     * Constructor.
19
-     *
20
-     * @param string $string
21
-     */
22
-    public function __construct(string $string)
23
-    {
24
-        $this->_typeTag = self::TYPE_GRAPHIC_STRING;
25
-        parent::__construct($string);
26
-    }
17
+	/**
18
+	 * Constructor.
19
+	 *
20
+	 * @param string $string
21
+	 */
22
+	public function __construct(string $string)
23
+	{
24
+		$this->_typeTag = self::TYPE_GRAPHIC_STRING;
25
+		parent::__construct($string);
26
+	}
27 27
 
28
-    /**
29
-     * {@inheritdoc}
30
-     */
31
-    protected function _validateString(string $string): bool
32
-    {
33
-        // allow everything
34
-        return true;
35
-    }
28
+	/**
29
+	 * {@inheritdoc}
30
+	 */
31
+	protected function _validateString(string $string): bool
32
+	{
33
+		// allow everything
34
+		return true;
35
+	}
36 36
 }
Please login to merge, or discard this patch.