@@ -9,10 +9,10 @@ |
||
| 9 | 9 | */ |
| 10 | 10 | interface Encodable |
| 11 | 11 | { |
| 12 | - /** |
|
| 13 | - * Encode object to DER. |
|
| 14 | - * |
|
| 15 | - * @return string |
|
| 16 | - */ |
|
| 17 | - public function toDER(): string; |
|
| 12 | + /** |
|
| 13 | + * Encode object to DER. |
|
| 14 | + * |
|
| 15 | + * @return string |
|
| 16 | + */ |
|
| 17 | + public function toDER(): string; |
|
| 18 | 18 | } |
@@ -14,82 +14,82 @@ |
||
| 14 | 14 | */ |
| 15 | 15 | class DERData extends Element |
| 16 | 16 | { |
| 17 | - /** |
|
| 18 | - * DER encoded data. |
|
| 19 | - * |
|
| 20 | - * @var string $_der |
|
| 21 | - */ |
|
| 22 | - protected $_der; |
|
| 17 | + /** |
|
| 18 | + * DER encoded data. |
|
| 19 | + * |
|
| 20 | + * @var string $_der |
|
| 21 | + */ |
|
| 22 | + protected $_der; |
|
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * Identifier of the underlying type. |
|
| 26 | - * |
|
| 27 | - * @var Identifier $_identifier |
|
| 28 | - */ |
|
| 29 | - protected $_identifier; |
|
| 24 | + /** |
|
| 25 | + * Identifier of the underlying type. |
|
| 26 | + * |
|
| 27 | + * @var Identifier $_identifier |
|
| 28 | + */ |
|
| 29 | + protected $_identifier; |
|
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * Offset to the content in DER data. |
|
| 33 | - * |
|
| 34 | - * @var int $_contentOffset |
|
| 35 | - */ |
|
| 36 | - protected $_contentOffset = 0; |
|
| 31 | + /** |
|
| 32 | + * Offset to the content in DER data. |
|
| 33 | + * |
|
| 34 | + * @var int $_contentOffset |
|
| 35 | + */ |
|
| 36 | + protected $_contentOffset = 0; |
|
| 37 | 37 | |
| 38 | - /** |
|
| 39 | - * Constructor. |
|
| 40 | - * |
|
| 41 | - * @param string $data DER encoded data |
|
| 42 | - * @throws \ASN1\Exception\DecodeException If data does not adhere to DER |
|
| 43 | - */ |
|
| 44 | - public function __construct(string $data) |
|
| 45 | - { |
|
| 46 | - $this->_identifier = Identifier::fromDER($data, $this->_contentOffset); |
|
| 47 | - Length::expectFromDER($data, $this->_contentOffset); |
|
| 48 | - $this->_der = $data; |
|
| 49 | - $this->_typeTag = intval($this->_identifier->tag()); |
|
| 50 | - } |
|
| 38 | + /** |
|
| 39 | + * Constructor. |
|
| 40 | + * |
|
| 41 | + * @param string $data DER encoded data |
|
| 42 | + * @throws \ASN1\Exception\DecodeException If data does not adhere to DER |
|
| 43 | + */ |
|
| 44 | + public function __construct(string $data) |
|
| 45 | + { |
|
| 46 | + $this->_identifier = Identifier::fromDER($data, $this->_contentOffset); |
|
| 47 | + Length::expectFromDER($data, $this->_contentOffset); |
|
| 48 | + $this->_der = $data; |
|
| 49 | + $this->_typeTag = intval($this->_identifier->tag()); |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * |
|
| 54 | - * @see \ASN1\Element::typeClass() |
|
| 55 | - * @return int |
|
| 56 | - */ |
|
| 57 | - public function typeClass(): int |
|
| 58 | - { |
|
| 59 | - return $this->_identifier->typeClass(); |
|
| 60 | - } |
|
| 52 | + /** |
|
| 53 | + * |
|
| 54 | + * @see \ASN1\Element::typeClass() |
|
| 55 | + * @return int |
|
| 56 | + */ |
|
| 57 | + public function typeClass(): int |
|
| 58 | + { |
|
| 59 | + return $this->_identifier->typeClass(); |
|
| 60 | + } |
|
| 61 | 61 | |
| 62 | - /** |
|
| 63 | - * |
|
| 64 | - * @see \ASN1\Element::isConstructed() |
|
| 65 | - * @return bool |
|
| 66 | - */ |
|
| 67 | - public function isConstructed(): bool |
|
| 68 | - { |
|
| 69 | - return $this->_identifier->isConstructed(); |
|
| 70 | - } |
|
| 62 | + /** |
|
| 63 | + * |
|
| 64 | + * @see \ASN1\Element::isConstructed() |
|
| 65 | + * @return bool |
|
| 66 | + */ |
|
| 67 | + public function isConstructed(): bool |
|
| 68 | + { |
|
| 69 | + return $this->_identifier->isConstructed(); |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * |
|
| 74 | - * @see \ASN1\Element::_encodedContentDER() |
|
| 75 | - * @return string |
|
| 76 | - */ |
|
| 77 | - protected function _encodedContentDER(): string |
|
| 78 | - { |
|
| 79 | - // if there's no content payload |
|
| 80 | - if (strlen($this->_der) == $this->_contentOffset) { |
|
| 81 | - return ""; |
|
| 82 | - } |
|
| 83 | - return substr($this->_der, $this->_contentOffset); |
|
| 84 | - } |
|
| 72 | + /** |
|
| 73 | + * |
|
| 74 | + * @see \ASN1\Element::_encodedContentDER() |
|
| 75 | + * @return string |
|
| 76 | + */ |
|
| 77 | + protected function _encodedContentDER(): string |
|
| 78 | + { |
|
| 79 | + // if there's no content payload |
|
| 80 | + if (strlen($this->_der) == $this->_contentOffset) { |
|
| 81 | + return ""; |
|
| 82 | + } |
|
| 83 | + return substr($this->_der, $this->_contentOffset); |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - /** |
|
| 87 | - * |
|
| 88 | - * @see \ASN1\Element::toDER() |
|
| 89 | - * @return string |
|
| 90 | - */ |
|
| 91 | - public function toDER(): string |
|
| 92 | - { |
|
| 93 | - return $this->_der; |
|
| 94 | - } |
|
| 86 | + /** |
|
| 87 | + * |
|
| 88 | + * @see \ASN1\Element::toDER() |
|
| 89 | + * @return string |
|
| 90 | + */ |
|
| 91 | + public function toDER(): string |
|
| 92 | + { |
|
| 93 | + return $this->_der; |
|
| 94 | + } |
|
| 95 | 95 | } |
@@ -332,10 +332,10 @@ |
||
| 332 | 332 | private function _isPseudoType($tag): bool |
| 333 | 333 | { |
| 334 | 334 | switch ($tag) { |
| 335 | - case self::TYPE_STRING: |
|
| 336 | - return $this instanceof StringType; |
|
| 337 | - case self::TYPE_TIME: |
|
| 338 | - return $this instanceof TimeType; |
|
| 335 | + case self::TYPE_STRING: |
|
| 336 | + return $this instanceof StringType; |
|
| 337 | + case self::TYPE_TIME: |
|
| 338 | + return $this instanceof TimeType; |
|
| 339 | 339 | } |
| 340 | 340 | return false; |
| 341 | 341 | } |
@@ -20,439 +20,439 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | abstract class Element implements ElementBase |
| 22 | 22 | { |
| 23 | - // Universal type tags |
|
| 24 | - const TYPE_EOC = 0x00; |
|
| 25 | - const TYPE_BOOLEAN = 0x01; |
|
| 26 | - const TYPE_INTEGER = 0x02; |
|
| 27 | - const TYPE_BIT_STRING = 0x03; |
|
| 28 | - const TYPE_OCTET_STRING = 0x04; |
|
| 29 | - const TYPE_NULL = 0x05; |
|
| 30 | - const TYPE_OBJECT_IDENTIFIER = 0x06; |
|
| 31 | - const TYPE_OBJECT_DESCRIPTOR = 0x07; |
|
| 32 | - const TYPE_EXTERNAL = 0x08; |
|
| 33 | - const TYPE_REAL = 0x09; |
|
| 34 | - const TYPE_ENUMERATED = 0x0a; |
|
| 35 | - const TYPE_EMBEDDED_PDV = 0x0b; |
|
| 36 | - const TYPE_UTF8_STRING = 0x0c; |
|
| 37 | - const TYPE_RELATIVE_OID = 0x0d; |
|
| 38 | - const TYPE_SEQUENCE = 0x10; |
|
| 39 | - const TYPE_SET = 0x11; |
|
| 40 | - const TYPE_NUMERIC_STRING = 0x12; |
|
| 41 | - const TYPE_PRINTABLE_STRING = 0x13; |
|
| 42 | - const TYPE_T61_STRING = 0x14; |
|
| 43 | - const TYPE_VIDEOTEX_STRING = 0x15; |
|
| 44 | - const TYPE_IA5_STRING = 0x16; |
|
| 45 | - const TYPE_UTC_TIME = 0x17; |
|
| 46 | - const TYPE_GENERALIZED_TIME = 0x18; |
|
| 47 | - const TYPE_GRAPHIC_STRING = 0x19; |
|
| 48 | - const TYPE_VISIBLE_STRING = 0x1a; |
|
| 49 | - const TYPE_GENERAL_STRING = 0x1b; |
|
| 50 | - const TYPE_UNIVERSAL_STRING = 0x1c; |
|
| 51 | - const TYPE_CHARACTER_STRING = 0x1d; |
|
| 52 | - const TYPE_BMP_STRING = 0x1e; |
|
| 23 | + // Universal type tags |
|
| 24 | + const TYPE_EOC = 0x00; |
|
| 25 | + const TYPE_BOOLEAN = 0x01; |
|
| 26 | + const TYPE_INTEGER = 0x02; |
|
| 27 | + const TYPE_BIT_STRING = 0x03; |
|
| 28 | + const TYPE_OCTET_STRING = 0x04; |
|
| 29 | + const TYPE_NULL = 0x05; |
|
| 30 | + const TYPE_OBJECT_IDENTIFIER = 0x06; |
|
| 31 | + const TYPE_OBJECT_DESCRIPTOR = 0x07; |
|
| 32 | + const TYPE_EXTERNAL = 0x08; |
|
| 33 | + const TYPE_REAL = 0x09; |
|
| 34 | + const TYPE_ENUMERATED = 0x0a; |
|
| 35 | + const TYPE_EMBEDDED_PDV = 0x0b; |
|
| 36 | + const TYPE_UTF8_STRING = 0x0c; |
|
| 37 | + const TYPE_RELATIVE_OID = 0x0d; |
|
| 38 | + const TYPE_SEQUENCE = 0x10; |
|
| 39 | + const TYPE_SET = 0x11; |
|
| 40 | + const TYPE_NUMERIC_STRING = 0x12; |
|
| 41 | + const TYPE_PRINTABLE_STRING = 0x13; |
|
| 42 | + const TYPE_T61_STRING = 0x14; |
|
| 43 | + const TYPE_VIDEOTEX_STRING = 0x15; |
|
| 44 | + const TYPE_IA5_STRING = 0x16; |
|
| 45 | + const TYPE_UTC_TIME = 0x17; |
|
| 46 | + const TYPE_GENERALIZED_TIME = 0x18; |
|
| 47 | + const TYPE_GRAPHIC_STRING = 0x19; |
|
| 48 | + const TYPE_VISIBLE_STRING = 0x1a; |
|
| 49 | + const TYPE_GENERAL_STRING = 0x1b; |
|
| 50 | + const TYPE_UNIVERSAL_STRING = 0x1c; |
|
| 51 | + const TYPE_CHARACTER_STRING = 0x1d; |
|
| 52 | + const TYPE_BMP_STRING = 0x1e; |
|
| 53 | 53 | |
| 54 | - /** |
|
| 55 | - * Mapping from universal type tag to implementation class name. |
|
| 56 | - * |
|
| 57 | - * @internal |
|
| 58 | - * |
|
| 59 | - * @var array |
|
| 60 | - */ |
|
| 61 | - const MAP_TAG_TO_CLASS = [ |
|
| 62 | - /* @formatter:off */ |
|
| 63 | - self::TYPE_BOOLEAN => Primitive\Boolean::class, |
|
| 64 | - self::TYPE_INTEGER => Primitive\Integer::class, |
|
| 65 | - self::TYPE_BIT_STRING => Primitive\BitString::class, |
|
| 66 | - self::TYPE_OCTET_STRING => Primitive\OctetString::class, |
|
| 67 | - self::TYPE_NULL => Primitive\NullType::class, |
|
| 68 | - self::TYPE_OBJECT_IDENTIFIER => Primitive\ObjectIdentifier::class, |
|
| 69 | - self::TYPE_OBJECT_DESCRIPTOR => Primitive\ObjectDescriptor::class, |
|
| 70 | - self::TYPE_REAL => Primitive\Real::class, |
|
| 71 | - self::TYPE_ENUMERATED => Primitive\Enumerated::class, |
|
| 72 | - self::TYPE_UTF8_STRING => Primitive\UTF8String::class, |
|
| 73 | - self::TYPE_RELATIVE_OID => Primitive\RelativeOID::class, |
|
| 74 | - self::TYPE_SEQUENCE => Constructed\Sequence::class, |
|
| 75 | - self::TYPE_SET => Constructed\Set::class, |
|
| 76 | - self::TYPE_NUMERIC_STRING => Primitive\NumericString::class, |
|
| 77 | - self::TYPE_PRINTABLE_STRING => Primitive\PrintableString::class, |
|
| 78 | - self::TYPE_T61_STRING => Primitive\T61String::class, |
|
| 79 | - self::TYPE_VIDEOTEX_STRING => Primitive\VideotexString::class, |
|
| 80 | - self::TYPE_IA5_STRING => Primitive\IA5String::class, |
|
| 81 | - self::TYPE_UTC_TIME => Primitive\UTCTime::class, |
|
| 82 | - self::TYPE_GENERALIZED_TIME => Primitive\GeneralizedTime::class, |
|
| 83 | - self::TYPE_GRAPHIC_STRING => Primitive\GraphicString::class, |
|
| 84 | - self::TYPE_VISIBLE_STRING => Primitive\VisibleString::class, |
|
| 85 | - self::TYPE_GENERAL_STRING => Primitive\GeneralString::class, |
|
| 86 | - self::TYPE_UNIVERSAL_STRING => Primitive\UniversalString::class, |
|
| 87 | - self::TYPE_CHARACTER_STRING => Primitive\CharacterString::class, |
|
| 88 | - self::TYPE_BMP_STRING => Primitive\BMPString::class, |
|
| 89 | - /* @formatter:on */ |
|
| 90 | - ]; |
|
| 54 | + /** |
|
| 55 | + * Mapping from universal type tag to implementation class name. |
|
| 56 | + * |
|
| 57 | + * @internal |
|
| 58 | + * |
|
| 59 | + * @var array |
|
| 60 | + */ |
|
| 61 | + const MAP_TAG_TO_CLASS = [ |
|
| 62 | + /* @formatter:off */ |
|
| 63 | + self::TYPE_BOOLEAN => Primitive\Boolean::class, |
|
| 64 | + self::TYPE_INTEGER => Primitive\Integer::class, |
|
| 65 | + self::TYPE_BIT_STRING => Primitive\BitString::class, |
|
| 66 | + self::TYPE_OCTET_STRING => Primitive\OctetString::class, |
|
| 67 | + self::TYPE_NULL => Primitive\NullType::class, |
|
| 68 | + self::TYPE_OBJECT_IDENTIFIER => Primitive\ObjectIdentifier::class, |
|
| 69 | + self::TYPE_OBJECT_DESCRIPTOR => Primitive\ObjectDescriptor::class, |
|
| 70 | + self::TYPE_REAL => Primitive\Real::class, |
|
| 71 | + self::TYPE_ENUMERATED => Primitive\Enumerated::class, |
|
| 72 | + self::TYPE_UTF8_STRING => Primitive\UTF8String::class, |
|
| 73 | + self::TYPE_RELATIVE_OID => Primitive\RelativeOID::class, |
|
| 74 | + self::TYPE_SEQUENCE => Constructed\Sequence::class, |
|
| 75 | + self::TYPE_SET => Constructed\Set::class, |
|
| 76 | + self::TYPE_NUMERIC_STRING => Primitive\NumericString::class, |
|
| 77 | + self::TYPE_PRINTABLE_STRING => Primitive\PrintableString::class, |
|
| 78 | + self::TYPE_T61_STRING => Primitive\T61String::class, |
|
| 79 | + self::TYPE_VIDEOTEX_STRING => Primitive\VideotexString::class, |
|
| 80 | + self::TYPE_IA5_STRING => Primitive\IA5String::class, |
|
| 81 | + self::TYPE_UTC_TIME => Primitive\UTCTime::class, |
|
| 82 | + self::TYPE_GENERALIZED_TIME => Primitive\GeneralizedTime::class, |
|
| 83 | + self::TYPE_GRAPHIC_STRING => Primitive\GraphicString::class, |
|
| 84 | + self::TYPE_VISIBLE_STRING => Primitive\VisibleString::class, |
|
| 85 | + self::TYPE_GENERAL_STRING => Primitive\GeneralString::class, |
|
| 86 | + self::TYPE_UNIVERSAL_STRING => Primitive\UniversalString::class, |
|
| 87 | + self::TYPE_CHARACTER_STRING => Primitive\CharacterString::class, |
|
| 88 | + self::TYPE_BMP_STRING => Primitive\BMPString::class, |
|
| 89 | + /* @formatter:on */ |
|
| 90 | + ]; |
|
| 91 | 91 | |
| 92 | - /** |
|
| 93 | - * Pseudotype for all string types. |
|
| 94 | - * |
|
| 95 | - * May be used as an expectation parameter. |
|
| 96 | - * |
|
| 97 | - * @var int |
|
| 98 | - */ |
|
| 99 | - const TYPE_STRING = -1; |
|
| 92 | + /** |
|
| 93 | + * Pseudotype for all string types. |
|
| 94 | + * |
|
| 95 | + * May be used as an expectation parameter. |
|
| 96 | + * |
|
| 97 | + * @var int |
|
| 98 | + */ |
|
| 99 | + const TYPE_STRING = -1; |
|
| 100 | 100 | |
| 101 | - /** |
|
| 102 | - * Pseudotype for all time types. |
|
| 103 | - * |
|
| 104 | - * May be used as an expectation parameter. |
|
| 105 | - * |
|
| 106 | - * @var int |
|
| 107 | - */ |
|
| 108 | - const TYPE_TIME = -2; |
|
| 101 | + /** |
|
| 102 | + * Pseudotype for all time types. |
|
| 103 | + * |
|
| 104 | + * May be used as an expectation parameter. |
|
| 105 | + * |
|
| 106 | + * @var int |
|
| 107 | + */ |
|
| 108 | + const TYPE_TIME = -2; |
|
| 109 | 109 | |
| 110 | - /** |
|
| 111 | - * Mapping from universal type tag to human readable name. |
|
| 112 | - * |
|
| 113 | - * @internal |
|
| 114 | - * |
|
| 115 | - * @var array |
|
| 116 | - */ |
|
| 117 | - const MAP_TYPE_TO_NAME = array( |
|
| 118 | - /* @formatter:off */ |
|
| 119 | - self::TYPE_EOC => "EOC", |
|
| 120 | - self::TYPE_BOOLEAN => "BOOLEAN", |
|
| 121 | - self::TYPE_INTEGER => "INTEGER", |
|
| 122 | - self::TYPE_BIT_STRING => "BIT STRING", |
|
| 123 | - self::TYPE_OCTET_STRING => "OCTET STRING", |
|
| 124 | - self::TYPE_NULL => "NULL", |
|
| 125 | - self::TYPE_OBJECT_IDENTIFIER => "OBJECT IDENTIFIER", |
|
| 126 | - self::TYPE_OBJECT_DESCRIPTOR => "ObjectDescriptor", |
|
| 127 | - self::TYPE_EXTERNAL => "EXTERNAL", |
|
| 128 | - self::TYPE_REAL => "REAL", |
|
| 129 | - self::TYPE_ENUMERATED => "ENUMERATED", |
|
| 130 | - self::TYPE_EMBEDDED_PDV => "EMBEDDED PDV", |
|
| 131 | - self::TYPE_UTF8_STRING => "UTF8String", |
|
| 132 | - self::TYPE_RELATIVE_OID => "RELATIVE-OID", |
|
| 133 | - self::TYPE_SEQUENCE => "SEQUENCE", |
|
| 134 | - self::TYPE_SET => "SET", |
|
| 135 | - self::TYPE_NUMERIC_STRING => "NumericString", |
|
| 136 | - self::TYPE_PRINTABLE_STRING => "PrintableString", |
|
| 137 | - self::TYPE_T61_STRING => "T61String", |
|
| 138 | - self::TYPE_VIDEOTEX_STRING => "VideotexString", |
|
| 139 | - self::TYPE_IA5_STRING => "IA5String", |
|
| 140 | - self::TYPE_UTC_TIME => "UTCTime", |
|
| 141 | - self::TYPE_GENERALIZED_TIME => "GeneralizedTime", |
|
| 142 | - self::TYPE_GRAPHIC_STRING => "GraphicString", |
|
| 143 | - self::TYPE_VISIBLE_STRING => "VisibleString", |
|
| 144 | - self::TYPE_GENERAL_STRING => "GeneralString", |
|
| 145 | - self::TYPE_UNIVERSAL_STRING => "UniversalString", |
|
| 146 | - self::TYPE_CHARACTER_STRING => "CHARACTER STRING", |
|
| 147 | - self::TYPE_BMP_STRING => "BMPString", |
|
| 148 | - self::TYPE_STRING => "Any String", |
|
| 149 | - self::TYPE_TIME => "Any Time" |
|
| 150 | - /* @formatter:on */ |
|
| 151 | - ); |
|
| 110 | + /** |
|
| 111 | + * Mapping from universal type tag to human readable name. |
|
| 112 | + * |
|
| 113 | + * @internal |
|
| 114 | + * |
|
| 115 | + * @var array |
|
| 116 | + */ |
|
| 117 | + const MAP_TYPE_TO_NAME = array( |
|
| 118 | + /* @formatter:off */ |
|
| 119 | + self::TYPE_EOC => "EOC", |
|
| 120 | + self::TYPE_BOOLEAN => "BOOLEAN", |
|
| 121 | + self::TYPE_INTEGER => "INTEGER", |
|
| 122 | + self::TYPE_BIT_STRING => "BIT STRING", |
|
| 123 | + self::TYPE_OCTET_STRING => "OCTET STRING", |
|
| 124 | + self::TYPE_NULL => "NULL", |
|
| 125 | + self::TYPE_OBJECT_IDENTIFIER => "OBJECT IDENTIFIER", |
|
| 126 | + self::TYPE_OBJECT_DESCRIPTOR => "ObjectDescriptor", |
|
| 127 | + self::TYPE_EXTERNAL => "EXTERNAL", |
|
| 128 | + self::TYPE_REAL => "REAL", |
|
| 129 | + self::TYPE_ENUMERATED => "ENUMERATED", |
|
| 130 | + self::TYPE_EMBEDDED_PDV => "EMBEDDED PDV", |
|
| 131 | + self::TYPE_UTF8_STRING => "UTF8String", |
|
| 132 | + self::TYPE_RELATIVE_OID => "RELATIVE-OID", |
|
| 133 | + self::TYPE_SEQUENCE => "SEQUENCE", |
|
| 134 | + self::TYPE_SET => "SET", |
|
| 135 | + self::TYPE_NUMERIC_STRING => "NumericString", |
|
| 136 | + self::TYPE_PRINTABLE_STRING => "PrintableString", |
|
| 137 | + self::TYPE_T61_STRING => "T61String", |
|
| 138 | + self::TYPE_VIDEOTEX_STRING => "VideotexString", |
|
| 139 | + self::TYPE_IA5_STRING => "IA5String", |
|
| 140 | + self::TYPE_UTC_TIME => "UTCTime", |
|
| 141 | + self::TYPE_GENERALIZED_TIME => "GeneralizedTime", |
|
| 142 | + self::TYPE_GRAPHIC_STRING => "GraphicString", |
|
| 143 | + self::TYPE_VISIBLE_STRING => "VisibleString", |
|
| 144 | + self::TYPE_GENERAL_STRING => "GeneralString", |
|
| 145 | + self::TYPE_UNIVERSAL_STRING => "UniversalString", |
|
| 146 | + self::TYPE_CHARACTER_STRING => "CHARACTER STRING", |
|
| 147 | + self::TYPE_BMP_STRING => "BMPString", |
|
| 148 | + self::TYPE_STRING => "Any String", |
|
| 149 | + self::TYPE_TIME => "Any Time" |
|
| 150 | + /* @formatter:on */ |
|
| 151 | + ); |
|
| 152 | 152 | |
| 153 | - /** |
|
| 154 | - * Element's type tag. |
|
| 155 | - * |
|
| 156 | - * @var int |
|
| 157 | - */ |
|
| 158 | - protected $_typeTag; |
|
| 153 | + /** |
|
| 154 | + * Element's type tag. |
|
| 155 | + * |
|
| 156 | + * @var int |
|
| 157 | + */ |
|
| 158 | + protected $_typeTag; |
|
| 159 | 159 | |
| 160 | - /** |
|
| 161 | - * |
|
| 162 | - * @see \ASN1\Feature\ElementBase::typeClass() |
|
| 163 | - * @return int |
|
| 164 | - */ |
|
| 165 | - abstract public function typeClass(): int; |
|
| 160 | + /** |
|
| 161 | + * |
|
| 162 | + * @see \ASN1\Feature\ElementBase::typeClass() |
|
| 163 | + * @return int |
|
| 164 | + */ |
|
| 165 | + abstract public function typeClass(): int; |
|
| 166 | 166 | |
| 167 | - /** |
|
| 168 | - * |
|
| 169 | - * @see \ASN1\Feature\ElementBase::isConstructed() |
|
| 170 | - * @return bool |
|
| 171 | - */ |
|
| 172 | - abstract public function isConstructed(): bool; |
|
| 167 | + /** |
|
| 168 | + * |
|
| 169 | + * @see \ASN1\Feature\ElementBase::isConstructed() |
|
| 170 | + * @return bool |
|
| 171 | + */ |
|
| 172 | + abstract public function isConstructed(): bool; |
|
| 173 | 173 | |
| 174 | - /** |
|
| 175 | - * Get the content encoded in DER. |
|
| 176 | - * |
|
| 177 | - * Returns the DER encoded content without identifier and length header |
|
| 178 | - * octets. |
|
| 179 | - * |
|
| 180 | - * @return string |
|
| 181 | - */ |
|
| 182 | - abstract protected function _encodedContentDER(): string; |
|
| 174 | + /** |
|
| 175 | + * Get the content encoded in DER. |
|
| 176 | + * |
|
| 177 | + * Returns the DER encoded content without identifier and length header |
|
| 178 | + * octets. |
|
| 179 | + * |
|
| 180 | + * @return string |
|
| 181 | + */ |
|
| 182 | + abstract protected function _encodedContentDER(): string; |
|
| 183 | 183 | |
| 184 | - /** |
|
| 185 | - * Decode type-specific element from DER. |
|
| 186 | - * |
|
| 187 | - * @param Identifier $identifier Pre-parsed identifier |
|
| 188 | - * @param string $data DER data |
|
| 189 | - * @param int $offset Offset in data to the next byte after identifier |
|
| 190 | - * @throws DecodeException If decoding fails |
|
| 191 | - * @return self |
|
| 192 | - */ |
|
| 193 | - protected static function _decodeFromDER(Identifier $identifier, string $data, |
|
| 194 | - int &$offset): ElementBase |
|
| 195 | - { |
|
| 196 | - throw new \BadMethodCallException( |
|
| 197 | - __METHOD__ . " must be implemented in derived class."); |
|
| 198 | - } |
|
| 184 | + /** |
|
| 185 | + * Decode type-specific element from DER. |
|
| 186 | + * |
|
| 187 | + * @param Identifier $identifier Pre-parsed identifier |
|
| 188 | + * @param string $data DER data |
|
| 189 | + * @param int $offset Offset in data to the next byte after identifier |
|
| 190 | + * @throws DecodeException If decoding fails |
|
| 191 | + * @return self |
|
| 192 | + */ |
|
| 193 | + protected static function _decodeFromDER(Identifier $identifier, string $data, |
|
| 194 | + int &$offset): ElementBase |
|
| 195 | + { |
|
| 196 | + throw new \BadMethodCallException( |
|
| 197 | + __METHOD__ . " must be implemented in derived class."); |
|
| 198 | + } |
|
| 199 | 199 | |
| 200 | - /** |
|
| 201 | - * Decode element from DER data. |
|
| 202 | - * |
|
| 203 | - * @param string $data DER encoded data |
|
| 204 | - * @param int|null $offset Reference to the variable that contains offset |
|
| 205 | - * into the data where to start parsing. Variable is updated to |
|
| 206 | - * the offset next to the parsed element. If null, start from offset |
|
| 207 | - * 0. |
|
| 208 | - * @throws DecodeException If decoding fails |
|
| 209 | - * @throws \UnexpectedValueException If called in the context of an expected |
|
| 210 | - * type, but decoding yields another type |
|
| 211 | - * @return self |
|
| 212 | - */ |
|
| 213 | - public static function fromDER(string $data, int &$offset = null): ElementBase |
|
| 214 | - { |
|
| 215 | - // decode identifier |
|
| 216 | - $idx = $offset ? $offset : 0; |
|
| 217 | - $identifier = Identifier::fromDER($data, $idx); |
|
| 218 | - // determine class that implements type specific decoding |
|
| 219 | - $cls = self::_determineImplClass($identifier); |
|
| 220 | - try { |
|
| 221 | - // decode remaining element |
|
| 222 | - $element = $cls::_decodeFromDER($identifier, $data, $idx); |
|
| 223 | - } catch (\LogicException $e) { |
|
| 224 | - // rethrow as a RuntimeException for unified exception handling |
|
| 225 | - throw new DecodeException( |
|
| 226 | - sprintf("Error while decoding %s.", |
|
| 227 | - self::tagToName($identifier->tag())), 0, $e); |
|
| 228 | - } |
|
| 229 | - // if called in the context of a concrete class, check |
|
| 230 | - // that decoded type matches the type of a calling class |
|
| 231 | - $called_class = get_called_class(); |
|
| 232 | - if (__CLASS__ != $called_class) { |
|
| 233 | - if (!$element instanceof $called_class) { |
|
| 234 | - throw new \UnexpectedValueException( |
|
| 235 | - sprintf("%s expected, got %s.", $called_class, |
|
| 236 | - get_class($element))); |
|
| 237 | - } |
|
| 238 | - } |
|
| 239 | - // update offset for the caller |
|
| 240 | - if (isset($offset)) { |
|
| 241 | - $offset = $idx; |
|
| 242 | - } |
|
| 243 | - return $element; |
|
| 244 | - } |
|
| 200 | + /** |
|
| 201 | + * Decode element from DER data. |
|
| 202 | + * |
|
| 203 | + * @param string $data DER encoded data |
|
| 204 | + * @param int|null $offset Reference to the variable that contains offset |
|
| 205 | + * into the data where to start parsing. Variable is updated to |
|
| 206 | + * the offset next to the parsed element. If null, start from offset |
|
| 207 | + * 0. |
|
| 208 | + * @throws DecodeException If decoding fails |
|
| 209 | + * @throws \UnexpectedValueException If called in the context of an expected |
|
| 210 | + * type, but decoding yields another type |
|
| 211 | + * @return self |
|
| 212 | + */ |
|
| 213 | + public static function fromDER(string $data, int &$offset = null): ElementBase |
|
| 214 | + { |
|
| 215 | + // decode identifier |
|
| 216 | + $idx = $offset ? $offset : 0; |
|
| 217 | + $identifier = Identifier::fromDER($data, $idx); |
|
| 218 | + // determine class that implements type specific decoding |
|
| 219 | + $cls = self::_determineImplClass($identifier); |
|
| 220 | + try { |
|
| 221 | + // decode remaining element |
|
| 222 | + $element = $cls::_decodeFromDER($identifier, $data, $idx); |
|
| 223 | + } catch (\LogicException $e) { |
|
| 224 | + // rethrow as a RuntimeException for unified exception handling |
|
| 225 | + throw new DecodeException( |
|
| 226 | + sprintf("Error while decoding %s.", |
|
| 227 | + self::tagToName($identifier->tag())), 0, $e); |
|
| 228 | + } |
|
| 229 | + // if called in the context of a concrete class, check |
|
| 230 | + // that decoded type matches the type of a calling class |
|
| 231 | + $called_class = get_called_class(); |
|
| 232 | + if (__CLASS__ != $called_class) { |
|
| 233 | + if (!$element instanceof $called_class) { |
|
| 234 | + throw new \UnexpectedValueException( |
|
| 235 | + sprintf("%s expected, got %s.", $called_class, |
|
| 236 | + get_class($element))); |
|
| 237 | + } |
|
| 238 | + } |
|
| 239 | + // update offset for the caller |
|
| 240 | + if (isset($offset)) { |
|
| 241 | + $offset = $idx; |
|
| 242 | + } |
|
| 243 | + return $element; |
|
| 244 | + } |
|
| 245 | 245 | |
| 246 | - /** |
|
| 247 | - * |
|
| 248 | - * @see \ASN1\Feature\Encodable::toDER() |
|
| 249 | - * @return string |
|
| 250 | - */ |
|
| 251 | - public function toDER(): string |
|
| 252 | - { |
|
| 253 | - $identifier = new Identifier($this->typeClass(), |
|
| 254 | - $this->isConstructed() ? Identifier::CONSTRUCTED : Identifier::PRIMITIVE, |
|
| 255 | - $this->_typeTag); |
|
| 256 | - $content = $this->_encodedContentDER(); |
|
| 257 | - $length = new Length(strlen($content)); |
|
| 258 | - return $identifier->toDER() . $length->toDER() . $content; |
|
| 259 | - } |
|
| 246 | + /** |
|
| 247 | + * |
|
| 248 | + * @see \ASN1\Feature\Encodable::toDER() |
|
| 249 | + * @return string |
|
| 250 | + */ |
|
| 251 | + public function toDER(): string |
|
| 252 | + { |
|
| 253 | + $identifier = new Identifier($this->typeClass(), |
|
| 254 | + $this->isConstructed() ? Identifier::CONSTRUCTED : Identifier::PRIMITIVE, |
|
| 255 | + $this->_typeTag); |
|
| 256 | + $content = $this->_encodedContentDER(); |
|
| 257 | + $length = new Length(strlen($content)); |
|
| 258 | + return $identifier->toDER() . $length->toDER() . $content; |
|
| 259 | + } |
|
| 260 | 260 | |
| 261 | - /** |
|
| 262 | - * |
|
| 263 | - * @see \ASN1\Feature\ElementBase::tag() |
|
| 264 | - * @return int |
|
| 265 | - */ |
|
| 266 | - public function tag(): int |
|
| 267 | - { |
|
| 268 | - return $this->_typeTag; |
|
| 269 | - } |
|
| 261 | + /** |
|
| 262 | + * |
|
| 263 | + * @see \ASN1\Feature\ElementBase::tag() |
|
| 264 | + * @return int |
|
| 265 | + */ |
|
| 266 | + public function tag(): int |
|
| 267 | + { |
|
| 268 | + return $this->_typeTag; |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - /** |
|
| 272 | - * |
|
| 273 | - * @see \ASN1\Feature\ElementBase::isType() |
|
| 274 | - * @return bool |
|
| 275 | - */ |
|
| 276 | - public function isType($tag): bool |
|
| 277 | - { |
|
| 278 | - // if element is context specific |
|
| 279 | - if ($this->typeClass() == Identifier::CLASS_CONTEXT_SPECIFIC) { |
|
| 280 | - return false; |
|
| 281 | - } |
|
| 282 | - // negative tags identify an abstract pseudotype |
|
| 283 | - if ($tag < 0) { |
|
| 284 | - return $this->_isPseudoType($tag); |
|
| 285 | - } |
|
| 286 | - return $this->_isConcreteType($tag); |
|
| 287 | - } |
|
| 271 | + /** |
|
| 272 | + * |
|
| 273 | + * @see \ASN1\Feature\ElementBase::isType() |
|
| 274 | + * @return bool |
|
| 275 | + */ |
|
| 276 | + public function isType($tag): bool |
|
| 277 | + { |
|
| 278 | + // if element is context specific |
|
| 279 | + if ($this->typeClass() == Identifier::CLASS_CONTEXT_SPECIFIC) { |
|
| 280 | + return false; |
|
| 281 | + } |
|
| 282 | + // negative tags identify an abstract pseudotype |
|
| 283 | + if ($tag < 0) { |
|
| 284 | + return $this->_isPseudoType($tag); |
|
| 285 | + } |
|
| 286 | + return $this->_isConcreteType($tag); |
|
| 287 | + } |
|
| 288 | 288 | |
| 289 | - /** |
|
| 290 | - * |
|
| 291 | - * @see \ASN1\Feature\ElementBase::expectType() |
|
| 292 | - * @return ElementBase |
|
| 293 | - */ |
|
| 294 | - public function expectType($tag): ElementBase |
|
| 295 | - { |
|
| 296 | - if (!$this->isType($tag)) { |
|
| 297 | - throw new \UnexpectedValueException( |
|
| 298 | - sprintf("%s expected, got %s.", self::tagToName($tag), |
|
| 299 | - $this->_typeDescriptorString())); |
|
| 300 | - } |
|
| 301 | - return $this; |
|
| 302 | - } |
|
| 289 | + /** |
|
| 290 | + * |
|
| 291 | + * @see \ASN1\Feature\ElementBase::expectType() |
|
| 292 | + * @return ElementBase |
|
| 293 | + */ |
|
| 294 | + public function expectType($tag): ElementBase |
|
| 295 | + { |
|
| 296 | + if (!$this->isType($tag)) { |
|
| 297 | + throw new \UnexpectedValueException( |
|
| 298 | + sprintf("%s expected, got %s.", self::tagToName($tag), |
|
| 299 | + $this->_typeDescriptorString())); |
|
| 300 | + } |
|
| 301 | + return $this; |
|
| 302 | + } |
|
| 303 | 303 | |
| 304 | - /** |
|
| 305 | - * Check whether the element is a concrete type of a given tag. |
|
| 306 | - * |
|
| 307 | - * @param int $tag |
|
| 308 | - * @return bool |
|
| 309 | - */ |
|
| 310 | - private function _isConcreteType($tag): bool |
|
| 311 | - { |
|
| 312 | - // if tag doesn't match |
|
| 313 | - if ($this->tag() != $tag) { |
|
| 314 | - return false; |
|
| 315 | - } |
|
| 316 | - // if type is universal check that instance is of a correct class |
|
| 317 | - if ($this->typeClass() == Identifier::CLASS_UNIVERSAL) { |
|
| 318 | - $cls = self::_determineUniversalImplClass($tag); |
|
| 319 | - if (!$this instanceof $cls) { |
|
| 320 | - return false; |
|
| 321 | - } |
|
| 322 | - } |
|
| 323 | - return true; |
|
| 324 | - } |
|
| 304 | + /** |
|
| 305 | + * Check whether the element is a concrete type of a given tag. |
|
| 306 | + * |
|
| 307 | + * @param int $tag |
|
| 308 | + * @return bool |
|
| 309 | + */ |
|
| 310 | + private function _isConcreteType($tag): bool |
|
| 311 | + { |
|
| 312 | + // if tag doesn't match |
|
| 313 | + if ($this->tag() != $tag) { |
|
| 314 | + return false; |
|
| 315 | + } |
|
| 316 | + // if type is universal check that instance is of a correct class |
|
| 317 | + if ($this->typeClass() == Identifier::CLASS_UNIVERSAL) { |
|
| 318 | + $cls = self::_determineUniversalImplClass($tag); |
|
| 319 | + if (!$this instanceof $cls) { |
|
| 320 | + return false; |
|
| 321 | + } |
|
| 322 | + } |
|
| 323 | + return true; |
|
| 324 | + } |
|
| 325 | 325 | |
| 326 | - /** |
|
| 327 | - * Check whether the element is a pseudotype. |
|
| 328 | - * |
|
| 329 | - * @param int $tag |
|
| 330 | - * @return bool |
|
| 331 | - */ |
|
| 332 | - private function _isPseudoType($tag): bool |
|
| 333 | - { |
|
| 334 | - switch ($tag) { |
|
| 335 | - case self::TYPE_STRING: |
|
| 336 | - return $this instanceof StringType; |
|
| 337 | - case self::TYPE_TIME: |
|
| 338 | - return $this instanceof TimeType; |
|
| 339 | - } |
|
| 340 | - return false; |
|
| 341 | - } |
|
| 326 | + /** |
|
| 327 | + * Check whether the element is a pseudotype. |
|
| 328 | + * |
|
| 329 | + * @param int $tag |
|
| 330 | + * @return bool |
|
| 331 | + */ |
|
| 332 | + private function _isPseudoType($tag): bool |
|
| 333 | + { |
|
| 334 | + switch ($tag) { |
|
| 335 | + case self::TYPE_STRING: |
|
| 336 | + return $this instanceof StringType; |
|
| 337 | + case self::TYPE_TIME: |
|
| 338 | + return $this instanceof TimeType; |
|
| 339 | + } |
|
| 340 | + return false; |
|
| 341 | + } |
|
| 342 | 342 | |
| 343 | - /** |
|
| 344 | - * |
|
| 345 | - * @see \ASN1\Feature\ElementBase::isTagged() |
|
| 346 | - * @return bool |
|
| 347 | - */ |
|
| 348 | - public function isTagged(): bool |
|
| 349 | - { |
|
| 350 | - return $this instanceof TaggedType; |
|
| 351 | - } |
|
| 343 | + /** |
|
| 344 | + * |
|
| 345 | + * @see \ASN1\Feature\ElementBase::isTagged() |
|
| 346 | + * @return bool |
|
| 347 | + */ |
|
| 348 | + public function isTagged(): bool |
|
| 349 | + { |
|
| 350 | + return $this instanceof TaggedType; |
|
| 351 | + } |
|
| 352 | 352 | |
| 353 | - /** |
|
| 354 | - * |
|
| 355 | - * @see \ASN1\Feature\ElementBase::expectTagged() |
|
| 356 | - * @return TaggedType |
|
| 357 | - */ |
|
| 358 | - public function expectTagged($tag = null): TaggedType |
|
| 359 | - { |
|
| 360 | - if (!$this->isTagged()) { |
|
| 361 | - throw new \UnexpectedValueException( |
|
| 362 | - sprintf("Context specific element expected, got %s.", |
|
| 363 | - Identifier::classToName($this->typeClass()))); |
|
| 364 | - } |
|
| 365 | - if (isset($tag) && $this->tag() != $tag) { |
|
| 366 | - throw new \UnexpectedValueException( |
|
| 367 | - sprintf("Tag %d expected, got %d.", $tag, $this->tag())); |
|
| 368 | - } |
|
| 369 | - return $this; |
|
| 370 | - } |
|
| 353 | + /** |
|
| 354 | + * |
|
| 355 | + * @see \ASN1\Feature\ElementBase::expectTagged() |
|
| 356 | + * @return TaggedType |
|
| 357 | + */ |
|
| 358 | + public function expectTagged($tag = null): TaggedType |
|
| 359 | + { |
|
| 360 | + if (!$this->isTagged()) { |
|
| 361 | + throw new \UnexpectedValueException( |
|
| 362 | + sprintf("Context specific element expected, got %s.", |
|
| 363 | + Identifier::classToName($this->typeClass()))); |
|
| 364 | + } |
|
| 365 | + if (isset($tag) && $this->tag() != $tag) { |
|
| 366 | + throw new \UnexpectedValueException( |
|
| 367 | + sprintf("Tag %d expected, got %d.", $tag, $this->tag())); |
|
| 368 | + } |
|
| 369 | + return $this; |
|
| 370 | + } |
|
| 371 | 371 | |
| 372 | - /** |
|
| 373 | - * |
|
| 374 | - * @see \ASN1\Feature\ElementBase::asElement() |
|
| 375 | - * @return Element |
|
| 376 | - */ |
|
| 377 | - final public function asElement(): Element |
|
| 378 | - { |
|
| 379 | - return $this; |
|
| 380 | - } |
|
| 372 | + /** |
|
| 373 | + * |
|
| 374 | + * @see \ASN1\Feature\ElementBase::asElement() |
|
| 375 | + * @return Element |
|
| 376 | + */ |
|
| 377 | + final public function asElement(): Element |
|
| 378 | + { |
|
| 379 | + return $this; |
|
| 380 | + } |
|
| 381 | 381 | |
| 382 | - /** |
|
| 383 | - * Get element decorated with UnspecifiedType object. |
|
| 384 | - * |
|
| 385 | - * @return UnspecifiedType |
|
| 386 | - */ |
|
| 387 | - public function asUnspecified(): UnspecifiedType |
|
| 388 | - { |
|
| 389 | - return new UnspecifiedType($this); |
|
| 390 | - } |
|
| 382 | + /** |
|
| 383 | + * Get element decorated with UnspecifiedType object. |
|
| 384 | + * |
|
| 385 | + * @return UnspecifiedType |
|
| 386 | + */ |
|
| 387 | + public function asUnspecified(): UnspecifiedType |
|
| 388 | + { |
|
| 389 | + return new UnspecifiedType($this); |
|
| 390 | + } |
|
| 391 | 391 | |
| 392 | - /** |
|
| 393 | - * Determine the class that implements the type. |
|
| 394 | - * |
|
| 395 | - * @param Identifier $identifier |
|
| 396 | - * @return string Class name |
|
| 397 | - */ |
|
| 398 | - protected static function _determineImplClass(Identifier $identifier): string |
|
| 399 | - { |
|
| 400 | - // tagged type |
|
| 401 | - if ($identifier->isContextSpecific()) { |
|
| 402 | - return TaggedType::class; |
|
| 403 | - } |
|
| 404 | - // universal class |
|
| 405 | - if ($identifier->isUniversal()) { |
|
| 406 | - return self::_determineUniversalImplClass( |
|
| 407 | - intval($identifier->tag())); |
|
| 408 | - } |
|
| 409 | - throw new \UnexpectedValueException( |
|
| 410 | - sprintf("%s %d not implemented.", |
|
| 411 | - Identifier::classToName($identifier->typeClass()), |
|
| 412 | - $identifier->tag())); |
|
| 413 | - } |
|
| 392 | + /** |
|
| 393 | + * Determine the class that implements the type. |
|
| 394 | + * |
|
| 395 | + * @param Identifier $identifier |
|
| 396 | + * @return string Class name |
|
| 397 | + */ |
|
| 398 | + protected static function _determineImplClass(Identifier $identifier): string |
|
| 399 | + { |
|
| 400 | + // tagged type |
|
| 401 | + if ($identifier->isContextSpecific()) { |
|
| 402 | + return TaggedType::class; |
|
| 403 | + } |
|
| 404 | + // universal class |
|
| 405 | + if ($identifier->isUniversal()) { |
|
| 406 | + return self::_determineUniversalImplClass( |
|
| 407 | + intval($identifier->tag())); |
|
| 408 | + } |
|
| 409 | + throw new \UnexpectedValueException( |
|
| 410 | + sprintf("%s %d not implemented.", |
|
| 411 | + Identifier::classToName($identifier->typeClass()), |
|
| 412 | + $identifier->tag())); |
|
| 413 | + } |
|
| 414 | 414 | |
| 415 | - /** |
|
| 416 | - * Determine the class that implements an universal type of the given tag. |
|
| 417 | - * |
|
| 418 | - * @param int $tag |
|
| 419 | - * @throws \UnexpectedValueException |
|
| 420 | - * @return string Class name |
|
| 421 | - */ |
|
| 422 | - protected static function _determineUniversalImplClass($tag): string |
|
| 423 | - { |
|
| 424 | - if (!array_key_exists($tag, self::MAP_TAG_TO_CLASS)) { |
|
| 425 | - throw new \UnexpectedValueException( |
|
| 426 | - "Universal tag $tag not implemented."); |
|
| 427 | - } |
|
| 428 | - return self::MAP_TAG_TO_CLASS[$tag]; |
|
| 429 | - } |
|
| 415 | + /** |
|
| 416 | + * Determine the class that implements an universal type of the given tag. |
|
| 417 | + * |
|
| 418 | + * @param int $tag |
|
| 419 | + * @throws \UnexpectedValueException |
|
| 420 | + * @return string Class name |
|
| 421 | + */ |
|
| 422 | + protected static function _determineUniversalImplClass($tag): string |
|
| 423 | + { |
|
| 424 | + if (!array_key_exists($tag, self::MAP_TAG_TO_CLASS)) { |
|
| 425 | + throw new \UnexpectedValueException( |
|
| 426 | + "Universal tag $tag not implemented."); |
|
| 427 | + } |
|
| 428 | + return self::MAP_TAG_TO_CLASS[$tag]; |
|
| 429 | + } |
|
| 430 | 430 | |
| 431 | - /** |
|
| 432 | - * Get textual description of the type for debugging purposes. |
|
| 433 | - * |
|
| 434 | - * @return string |
|
| 435 | - */ |
|
| 436 | - protected function _typeDescriptorString(): string |
|
| 437 | - { |
|
| 438 | - if ($this->typeClass() == Identifier::CLASS_UNIVERSAL) { |
|
| 439 | - return self::tagToName($this->_typeTag); |
|
| 440 | - } |
|
| 441 | - return sprintf("%s TAG %d", Identifier::classToName($this->typeClass()), |
|
| 442 | - $this->_typeTag); |
|
| 443 | - } |
|
| 431 | + /** |
|
| 432 | + * Get textual description of the type for debugging purposes. |
|
| 433 | + * |
|
| 434 | + * @return string |
|
| 435 | + */ |
|
| 436 | + protected function _typeDescriptorString(): string |
|
| 437 | + { |
|
| 438 | + if ($this->typeClass() == Identifier::CLASS_UNIVERSAL) { |
|
| 439 | + return self::tagToName($this->_typeTag); |
|
| 440 | + } |
|
| 441 | + return sprintf("%s TAG %d", Identifier::classToName($this->typeClass()), |
|
| 442 | + $this->_typeTag); |
|
| 443 | + } |
|
| 444 | 444 | |
| 445 | - /** |
|
| 446 | - * Get human readable name for an universal tag. |
|
| 447 | - * |
|
| 448 | - * @param int $tag |
|
| 449 | - * @return string |
|
| 450 | - */ |
|
| 451 | - public static function tagToName($tag): string |
|
| 452 | - { |
|
| 453 | - if (!array_key_exists($tag, self::MAP_TYPE_TO_NAME)) { |
|
| 454 | - return "TAG $tag"; |
|
| 455 | - } |
|
| 456 | - return self::MAP_TYPE_TO_NAME[$tag]; |
|
| 457 | - } |
|
| 445 | + /** |
|
| 446 | + * Get human readable name for an universal tag. |
|
| 447 | + * |
|
| 448 | + * @param int $tag |
|
| 449 | + * @return string |
|
| 450 | + */ |
|
| 451 | + public static function tagToName($tag): string |
|
| 452 | + { |
|
| 453 | + if (!array_key_exists($tag, self::MAP_TYPE_TO_NAME)) { |
|
| 454 | + return "TAG $tag"; |
|
| 455 | + } |
|
| 456 | + return self::MAP_TYPE_TO_NAME[$tag]; |
|
| 457 | + } |
|
| 458 | 458 | } |
@@ -11,13 +11,13 @@ |
||
| 11 | 11 | */ |
| 12 | 12 | trait UniversalClass |
| 13 | 13 | { |
| 14 | - /** |
|
| 15 | - * |
|
| 16 | - * @see \ASN1\Element::typeClass() |
|
| 17 | - * @return int |
|
| 18 | - */ |
|
| 19 | - public function typeClass(): int |
|
| 20 | - { |
|
| 21 | - return Identifier::CLASS_UNIVERSAL; |
|
| 22 | - } |
|
| 14 | + /** |
|
| 15 | + * |
|
| 16 | + * @see \ASN1\Element::typeClass() |
|
| 17 | + * @return int |
|
| 18 | + */ |
|
| 19 | + public function typeClass(): int |
|
| 20 | + { |
|
| 21 | + return Identifier::CLASS_UNIVERSAL; |
|
| 22 | + } |
|
| 23 | 23 | } |
@@ -12,14 +12,14 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class Sequence extends Structure |
| 14 | 14 | { |
| 15 | - /** |
|
| 16 | - * Constructor |
|
| 17 | - * |
|
| 18 | - * @param Element[] $elements Any number of elements |
|
| 19 | - */ |
|
| 20 | - public function __construct(Element ...$elements) |
|
| 21 | - { |
|
| 22 | - $this->_typeTag = self::TYPE_SEQUENCE; |
|
| 23 | - parent::__construct(...$elements); |
|
| 24 | - } |
|
| 15 | + /** |
|
| 16 | + * Constructor |
|
| 17 | + * |
|
| 18 | + * @param Element[] $elements Any number of elements |
|
| 19 | + */ |
|
| 20 | + public function __construct(Element ...$elements) |
|
| 21 | + { |
|
| 22 | + $this->_typeTag = self::TYPE_SEQUENCE; |
|
| 23 | + parent::__construct(...$elements); |
|
| 24 | + } |
|
| 25 | 25 | } |
@@ -12,26 +12,26 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GeneralString 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_GENERAL_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_GENERAL_STRING; |
|
| 25 | + parent::__construct($string); |
|
| 26 | + } |
|
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * |
|
| 30 | - * {@inheritdoc} |
|
| 31 | - */ |
|
| 32 | - protected function _validateString(string $string): bool |
|
| 33 | - { |
|
| 34 | - // allow everything |
|
| 35 | - return true; |
|
| 36 | - } |
|
| 28 | + /** |
|
| 29 | + * |
|
| 30 | + * {@inheritdoc} |
|
| 31 | + */ |
|
| 32 | + protected function _validateString(string $string): bool |
|
| 33 | + { |
|
| 34 | + // allow everything |
|
| 35 | + return true; |
|
| 36 | + } |
|
| 37 | 37 | } |
@@ -12,16 +12,16 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class OctetString 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_OCTET_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_OCTET_STRING; |
|
| 25 | + parent::__construct($string); |
|
| 26 | + } |
|
| 27 | 27 | } |
@@ -12,26 +12,26 @@ |
||
| 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 | - * |
|
| 30 | - * {@inheritdoc} |
|
| 31 | - */ |
|
| 32 | - protected function _validateString(string $string): bool |
|
| 33 | - { |
|
| 34 | - $chars = preg_quote(" '()+,-./:=?]", "/"); |
|
| 35 | - return preg_match('/[^A-Za-z0-9' . $chars . ']/', $string) == 0; |
|
| 36 | - } |
|
| 28 | + /** |
|
| 29 | + * |
|
| 30 | + * {@inheritdoc} |
|
| 31 | + */ |
|
| 32 | + protected function _validateString(string $string): bool |
|
| 33 | + { |
|
| 34 | + $chars = preg_quote(" '()+,-./:=?]", "/"); |
|
| 35 | + return preg_match('/[^A-Za-z0-9' . $chars . ']/', $string) == 0; |
|
| 36 | + } |
|
| 37 | 37 | } |
@@ -12,26 +12,26 @@ |
||
| 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 | - * |
|
| 30 | - * {@inheritdoc} |
|
| 31 | - */ |
|
| 32 | - protected function _validateString(string $string): bool |
|
| 33 | - { |
|
| 34 | - // allow everything |
|
| 35 | - return true; |
|
| 36 | - } |
|
| 28 | + /** |
|
| 29 | + * |
|
| 30 | + * {@inheritdoc} |
|
| 31 | + */ |
|
| 32 | + protected function _validateString(string $string): bool |
|
| 33 | + { |
|
| 34 | + // allow everything |
|
| 35 | + return true; |
|
| 36 | + } |
|
| 37 | 37 | } |