Home
last modified time | relevance | path

Searched refs:OctetStringType (Results 1 – 25 of 25) sorted by relevance

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DSetOwnerControl.php15 use FreeDSx\Asn1\Type\OctetStringType; alias
78 if (!$request instanceof OctetStringType) {
81 /** @var OctetStringType $request */
H A DDirSyncResponseControl.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
113 if (!$cookie instanceof OctetStringType) {
H A DDirSyncRequestControl.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
163 if (!$cookie instanceof OctetStringType) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DAddRequest.php15 use FreeDSx\Asn1\Type\OctetStringType; alias
93 if (!($dn instanceof OctetStringType && $attrList instanceof SequenceType)) {
109 if (!($attrType instanceof OctetStringType && $vals instanceof SetType)) {
115 if (!$val instanceof OctetStringType) {
H A DModifyDnRequest.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
163 …if (!($entry instanceof OctetStringType && $newRdn instanceof OctetStringType && $deleteOldRdn ins…
169 if ($newSuperior !== null && !$newSuperior instanceof OctetStringType) {
H A DModifyRequest.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
112 if (!($dn instanceof OctetStringType && $changes instanceof SequenceType)) {
183 if (!($attrType instanceof OctetStringType && $attrVals instanceof SetType)) {
189 if (!$attrVal instanceof OctetStringType) {
H A DDeleteRequest.php15 use FreeDSx\Asn1\Type\OctetStringType; alias
86 …if (!$type instanceof OctetStringType || $type->getTagClass() !== AbstractType::TAG_CLASS_APPLICAT…
H A DBindRequest.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
111 if (!($version instanceof IntegerType && $name instanceof OctetStringType)) {
H A DCompareRequest.php15 use FreeDSx\Asn1\Type\OctetStringType; alias
103 if (!$dn instanceof OctetStringType || $ava === null) {
H A DSearchRequest.php18 use FreeDSx\Asn1\Type\OctetStringType; alias
397 if (!($baseDn instanceof OctetStringType
409 if (!$attribute instanceof OctetStringType) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DAttributeValueAssertionTrait.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
100 if (!($attribute instanceof OctetStringType && $value instanceof OctetStringType)) {
H A DMatchingRuleFilter.php17 use FreeDSx\Asn1\Type\OctetStringType; alias
223 if (!$matchValue instanceof OctetStringType) {
226 if ($matchingRule !== null && !$matchingRule instanceof OctetStringType) {
229 if ($matchingType !== null && !$matchingType instanceof OctetStringType) {
H A DPresentFilter.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
61 if (!($type instanceof OctetStringType)) {
H A DSubstringFilter.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
207 …if (!($attrType instanceof OctetStringType && $substrings instanceof SequenceType && count($substr…
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Vlv/
H A DVlvResponseControl.php17 use FreeDSx\Asn1\Type\OctetStringType; alias
101 if ($contextId !== null && !$contextId instanceof OctetStringType) {
128 $this->controlValue->addChild(new OctetStringType($this->contextId));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/
H A DPagingControl.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
106 if (!$cookie instanceof OctetStringType) {
H A DControl.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
257 } elseif ($child instanceof OctetStringType) {
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DDerEncoder.php18 use FreeDSx\Asn1\Type\OctetStringType; alias
90 if ($type instanceof OctetStringType && $type->getIsConstructed()) {
H A DBerEncoder.php399 …$type = EncodedType\OctetStringType::withTag($tagNumber, $class, $isConstructed, \substr($this->bi…
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/
H A DAsn1.php27 use FreeDSx\Asn1\Type\OctetStringType; alias
114 * @return OctetStringType
116 public static function octetString(string $string) : OctetStringType
118 return new OctetStringType($string);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultEntry.php15 use FreeDSx\Asn1\Type\OctetStringType; alias
78 /** @var OctetStringType $attrValue */
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DOctetStringType.php18 class OctetStringType extends AbstractStringType class
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/
H A DSortingControl.php16 use FreeDSx\Asn1\Type\OctetStringType; alias
104 …if ($keyItem instanceof OctetStringType && $keyItem->getTagClass() === AbstractType::TAG_CLASS_UNI…
/plugin/pureldap/vendor/freedsx/asn1/
H A DREADME.md47 use FreeDSx\Asn1\Type\OctetStringType;
68 } elseif ($i === 1 && $type instanceof OctetStringType) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapMessage.php17 use FreeDSx\Asn1\Type\OctetStringType; alias
156 …uenceType && $control->getChild(0) !== null && $control->getChild(0) instanceof OctetStringType)) {