Home
last modified time | relevance | path

Searched refs:BitStringType (Results 1 – 4 of 4) sorted by relevance

/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/
H A DAsn1.php16 use FreeDSx\Asn1\Type\BitStringType;
124 * @return BitStringType
126 public static function bitString(string $bitString): BitStringType
128 return new BitStringType($bitString);
133 * @return BitStringType
135 public static function bitStringFromInteger(int $integer): BitStringType
137 return BitStringType::fromInteger($integer);
142 * @return BitStringType
144 public static function bitStringFromBinary($binary): BitStringType
146 return BitStringType
15 use FreeDSx\Asn1\Type\BitStringType; global() alias
[all...]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DBitStringType.php18 class BitStringType extends AbstractType class
40 * @return BitStringType
80 * @return BitStringType
102 * @return BitStringType
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DDerEncoder.php17 use FreeDSx\Asn1\Type\BitStringType; alias
93 if ($type instanceof BitStringType && $type->getIsConstructed()) {
H A DBerEncoder.php22 use FreeDSx\Asn1\Type\BitStringType;
208 case $type instanceof BitStringType:
417 $type = EncodedType\BitStringType::withTag($tagNumber, $class, $isConstructed, $this->decodeBitString($length));
659 * @param BitStringType $type
662 protected function encodeBitString(BitStringType $type)
20 use FreeDSx\Asn1\Type\BitStringType; global() alias