/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/ |
H A D | EnumeratedType.php | 22 protected $tagNumber = self::TAG_TYPE_ENUMERATED; variable in FreeDSx\\Asn1\\Type\\EnumeratedType 36 * @param string|int $tagNumber 41 public static function withTag($tagNumber, int $class, $value) argument 44 $type->tagNumber = $tagNumber;
|
H A D | IntegerType.php | 22 protected $tagNumber = self::TAG_TYPE_INTEGER; variable in FreeDSx\\Asn1\\Type\\IntegerType 36 * @param string|int $tagNumber 41 public static function withTag($tagNumber, int $class, $value) argument 44 $type->tagNumber = $tagNumber;
|
H A D | SequenceType.php | 23 protected $tagNumber = self::TAG_TYPE_SEQUENCE; variable in FreeDSx\\Asn1\\Type\\SequenceType 40 * @param string|int $tagNumber 45 public static function withTag($tagNumber, int $class, array $children = []) argument 49 $type->tagNumber = $tagNumber;
|
H A D | OidType.php | 20 protected $tagNumber = self::TAG_TYPE_OID; variable in FreeDSx\\Asn1\\Type\\OidType 42 * @param int|string $tagNumber 47 public static function withTag($tagNumber, int $class, string $value) argument 50 $type->tagNumber = $tagNumber;
|
H A D | BooleanType.php | 20 protected $tagNumber = self::TAG_TYPE_BOOLEAN; variable in FreeDSx\\Asn1\\Type\\BooleanType 42 * @param string|int $tagNumber 47 public static function withTag($tagNumber, int $class, bool $value) argument 51 $type->tagNumber = $tagNumber;
|
H A D | SetType.php | 22 protected $tagNumber = self::TAG_TYPE_SET; variable in FreeDSx\\Asn1\\Type\\SetType 46 * @param int|string $tagNumber 51 public static function withTag($tagNumber, int $class, array $children = []) argument 55 $type->tagNumber = $tagNumber;
|
H A D | RealType.php | 20 protected $tagNumber = self::TAG_TYPE_REAL; variable in FreeDSx\\Asn1\\Type\\RealType 50 * @param string|int $tagNumber 55 public static function withTag($tagNumber, int $class, float $value) argument 58 $type->tagNumber = $tagNumber;
|
H A D | RelativeOidType.php | 20 protected $tagNumber = self::TAG_TYPE_RELATIVE_OID; variable in FreeDSx\\Asn1\\Type\\RelativeOidType 58 * @param string|int $tagNumber 63 public static function withTag($tagNumber, int $class, string $value) argument 66 $type->tagNumber = $tagNumber;
|
H A D | NullType.php | 20 protected $tagNumber = self::TAG_TYPE_NULL; variable in FreeDSx\\Asn1\\Type\\NullType 27 public static function withTag($tagNumber, $class) argument 30 $type->tagNumber = $tagNumber;
|
H A D | IncompleteType.php | 23 * @param int $tagNumber 27 …public function __construct($value, $tagNumber = null, int $class = AbstractType::TAG_CLASS_UNIVER… argument 29 $this->tagNumber = $tagNumber;
|
H A D | AbstractStringType.php | 66 * @param string|int $tagNumber 72 public static function withTag($tagNumber, int $class, bool $isConstructed, $value = '') argument 76 $type->tagNumber = $tagNumber;
|
H A D | BitStringType.php | 20 protected $tagNumber = self::TAG_TYPE_BIT_STRING; variable in FreeDSx\\Asn1\\Type\\BitStringType 124 * @param string|int $tagNumber 130 public static function withTag($tagNumber, int $class, bool $isConstructed, string $value = '') argument 134 $type->tagNumber = $tagNumber;
|
H A D | AbstractTimeType.php | 161 * @param string|int $tagNumber 169 …public static function withTag($tagNumber, int $class, bool $isConstructed, ?\DateTime $dateTime =… argument 172 $type->tagNumber = $tagNumber;
|
H A D | AbstractType.php | 97 protected $tagNumber; variable in FreeDSx\\Asn1\\Type\\AbstractType 165 return $this->tagNumber; 174 $this->tagNumber = $int;
|
H A D | CharacterStringType.php | 20 protected $tagNumber = self::TAG_TYPE_CHARACTER_STRING; variable in FreeDSx\\Asn1\\Type\\CharacterStringType
|
H A D | OctetStringType.php | 20 protected $tagNumber = self::TAG_TYPE_OCTET_STRING; variable in FreeDSx\\Asn1\\Type\\OctetStringType
|
H A D | UniversalStringType.php | 20 protected $tagNumber = self::TAG_TYPE_UNIVERSAL_STRING; variable in FreeDSx\\Asn1\\Type\\UniversalStringType
|
H A D | VideotexStringType.php | 20 protected $tagNumber = self::TAG_TYPE_VIDEOTEX_STRING; variable in FreeDSx\\Asn1\\Type\\VideotexStringType
|
H A D | GraphicStringType.php | 20 protected $tagNumber = self::TAG_TYPE_GRAPHIC_STRING; variable in FreeDSx\\Asn1\\Type\\GraphicStringType
|
H A D | NumericStringType.php | 20 protected $tagNumber = self::TAG_TYPE_NUMERIC_STRING; variable in FreeDSx\\Asn1\\Type\\NumericStringType
|
H A D | PrintableStringType.php | 20 protected $tagNumber = self::TAG_TYPE_PRINTABLE_STRING; variable in FreeDSx\\Asn1\\Type\\PrintableStringType
|
H A D | TeletexStringType.php | 20 protected $tagNumber = self::TAG_TYPE_TELETEX_STRING; variable in FreeDSx\\Asn1\\Type\\TeletexStringType
|
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/ |
H A D | Asn1.php | 315 * @param int $tagNumber 319 public static function context(int $tagNumber, AbstractType $type) argument 325 * @param int $tagNumber 329 public static function application(int $tagNumber, AbstractType $type) argument 331 return $type->setTagClass(AbstractType::TAG_CLASS_APPLICATION)->setTagNumber($tagNumber); 335 * @param int $tagNumber 339 public static function universal(int $tagNumber, AbstractType $type) argument 341 return $type->setTagClass(AbstractType::TAG_CLASS_UNIVERSAL)->setTagNumber($tagNumber); 345 * @param int $tagNumber 349 public static function private(int $tagNumber, AbstractType $type) argument [all …]
|
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/ |
H A D | BerEncoder.php | 291 $tagNumber = $tagType; 296 $tagNumber = $tag & ~0xe0; 300 if ($tagNumber > 30) { 302 $tagNumber = $this->getVlqBytesToInt(); 321 …= ($class === AbstractType::TAG_CLASS_UNIVERSAL) ? $tagNumber : ($this->tmpTagMap[$class][$tagNumb… 351 … $type = EncodedType\BooleanType::withTag($tagNumber, $class, $this->decodeBoolean()); 357 $type = EncodedType\NullType::withTag($tagNumber, $class); 363 … $type = EncodedType\IntegerType::withTag($tagNumber, $class, $this->decodeInteger($length)); 375 $type = RealType::withTag($tagNumber, $class, $this->decodeReal($length)); 384 $type = OidType::withTag($tagNumber, $class, $this->decodeOid($length)); [all …]
|
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/ |
H A D | LdapResult.php | 87 protected $tagNumber; variable in FreeDSx\\Ldap\\Operation\\LdapResult 164 if ($this->tagNumber === null) { 168 return Asn1::application($this->tagNumber, $result);
|