Home
last modified time | relevance | path

Searched refs:sequence (Results 26 – 50 of 200) sorted by last modified time

12345678

/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/
H A DLdapResult.php159 $result = Asn1::sequence(
165 $result->addChild(Asn1::context(3, Asn1::sequence(...array_map(function ($v) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DBindRequest.php90 return Asn1::application(self::APP_TAG, Asn1::sequence(
H A DCompareRequest.php121 return Asn1::application(self::APP_TAG, Asn1::sequence(
H A DExtendedRequest.php121 $asn1 = Asn1::sequence(Asn1::context(0, Asn1::octetString($this->requestName)));
H A DModifyDnRequest.php188 $asn1 = Asn1::application(self::APP_TAG, Asn1::sequence(
H A DSearchRequest.php441 return Asn1::application(self::APP_TAG, Asn1::sequence(
H A DCancelRequest.php71 $this->requestValue = Asn1::sequence(Asn1::integer($this->messageId));
H A DSaslBindRequest.php88 $sasl = Asn1::sequence(Asn1::octetString($this->mechanism));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DPasswordModifyResponse.php61 $this->responseValue = Asn1::sequence(Asn1::context(0, Asn1::octetString($this->generatedPassword)));
H A DSearchResultEntry.php101 $asn1 = Asn1::application(self::TAG_NUMBER, Asn1::sequence());
105 $partialAttributes->addChild(Asn1::sequence(
H A DIntermediateResponse.php98 $response = Asn1::sequence();
H A DSearchResultReference.php78 return Asn1::application(self::TAG_NUMBER, Asn1::sequence(...array_map(function ($ref) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapMessage.php115 $asn1 = Asn1::sequence(
143 'Expected an ASN1 sequence type, but got: %s',
150 'Expected an ASN1 sequence with at least 2 elements, but it has %s',
168 throw new ProtocolException('The control either is not a sequence or has no OID value attached.');
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DAttributeValueAssertionTrait.php73 return Asn1::context(self::CHOICE_TAG, Asn1::sequence(
H A DMatchingRuleFilter.php156 $matchingRule = Asn1::context(self::CHOICE_TAG, Asn1::sequence());
H A DNotFilter.php70 return Asn1::context(self::CHOICE_TAG, Asn1::sequence($this->filter->toAsn1()));
H A DSubstringFilter.php164 return Asn1::context(self::CHOICE_TAG, Asn1::sequence(
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Ad/
H A DDirSyncRequestControl.php158 throw new ProtocolException('A DirSyncRequest control value must be a sequence type with 3 children.');
164 throw new ProtocolException('A DirSyncRequest control value sequence 0 must be an integer type.');
167 throw new ProtocolException('A DirSyncRequest control value sequence 1 must be an integer type.');
170 throw new ProtocolException('A DirSyncRequest control value sequence 2 must be an octet string type.');
188 $this->controlValue = Asn1::sequence(
H A DSdFlagsControl.php85 $this->controlValue = Asn1::sequence(Asn1::integer($this->flags));
H A DDirSyncResponseControl.php108 throw new ProtocolException('A DirSyncResponse control value must be a sequence type with 3 children.');
114 throw new ProtocolException('A DirSyncResponse control value sequence 0 must be an integer type.');
117 throw new ProtocolException('A DirSyncResponse control value sequence 1 must be an integer type.');
120 throw new ProtocolException('A DirSyncResponse control value sequence 2 must be an octet string type.');
137 $this->controlValue = Asn1::sequence(
H A DExpectedEntryCountControl.php105 throw new ProtocolException('An ExpectedEntryCount control value must be a sequence type.');
110 throw new ProtocolException('An ExpectedEntryCount control value sequence 0 must be an integer type.');
113 throw new ProtocolException('An ExpectedEntryCount control value sequence 1 must be an integer type.');
128 $this->controlValue = Asn1::sequence(
143 throw new ProtocolException('An ExpectedEntryCount control value must be a sequence type with 2 children.');
146 throw new ProtocolException('An ExpectedEntryCount control value sequence 0 must be an integer type.');
149 throw new ProtocolException('An ExpectedEntryCount control value sequence 1 must be an integer type.');
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/
H A DControl.php158 $asn1 = Asn1::sequence(
194 'Protocol encoding issue. Expected a sequence type but received: %s',
212 'The received control is malformed. Expected at least 3 sequence values. Received %s.',
H A DPwdPolicyResponseControl.php104 $response = Asn1::sequence();
111 $warning = Asn1::context(0, Asn1::sequence(
116 $warning = Asn1::context(0, Asn1::sequence(
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Vlv/
H A DVlvControl.php170 $this->controlValue = Asn1::sequence(
180 $this->controlValue->addChild(Asn1::context(0, Asn1::sequence(
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/
H A DAsn1.php55 public static function sequence(AbstractType ...$types): SequenceType
54 public static function sequence(AbstractType ...$types) : SequenceType global() function in FreeDSx\\Asn1\\Asn1

12345678