Lines Matching refs:univ

19 from pyasn1.type import univ
21 maxInt = univ.Integer(2147483647)
24 class LDAPString(univ.OctetString):
28 class LDAPOID(univ.OctetString):
48 class AttributeDescriptionList(univ.SequenceOf):
52 class AttributeValue(univ.OctetString):
56 class AssertionValue(univ.OctetString):
60 class AttributeValueAssertion(univ.Sequence):
67 class Attribute(univ.Sequence):
70 namedtype.NamedType('vals', univ.SetOf(componentType=AttributeValue()))
78 class Control(univ.Sequence):
81 namedtype.DefaultedNamedType('criticality', univ.Boolean('False')),
82 namedtype.OptionalNamedType('controlValue', univ.OctetString())
86 class Controls(univ.SequenceOf):
94 class Referral(univ.SequenceOf):
98 class SaslCredentials(univ.Sequence):
101 namedtype.OptionalNamedType('credentials', univ.OctetString())
105 class AuthenticationChoice(univ.Choice):
107 namedtype.NamedType('simple', univ.OctetString().subtype(
109 namedtype.NamedType('reserved-1', univ.OctetString().subtype(
111 namedtype.NamedType('reserved-2', univ.OctetString().subtype(
118 class BindRequest(univ.Sequence):
119 tagSet = univ.Sequence.tagSet.tagImplicitly(
123 …namedtype.NamedType('version', univ.Integer().subtype(subtypeSpec=constraint.ValueRangeConstraint(…
129 class PartialAttributeList(univ.SequenceOf):
130 componentType = univ.Sequence(
133 namedtype.NamedType('vals', univ.SetOf(componentType=AttributeValue()))
138 class SearchResultEntry(univ.Sequence):
139 tagSet = univ.Sequence.tagSet.tagImplicitly(
148 class MatchingRuleAssertion(univ.Sequence):
156 namedtype.DefaultedNamedType('dnAttributes', univ.Boolean('False').subtype(
161 class SubstringFilter(univ.Sequence):
165 univ.SequenceOf(
166 componentType=univ.Choice(
186 class Filter3(univ.Choice):
205 class Filter2(univ.Choice):
207 namedtype.NamedType('and', univ.SetOf(componentType=Filter3()).subtype(
209 namedtype.NamedType('or', univ.SetOf(componentType=Filter3()).subtype(
230 class Filter(univ.Choice):
232 namedtype.NamedType('and', univ.SetOf(componentType=Filter2()).subtype(
234 namedtype.NamedType('or', univ.SetOf(componentType=Filter2()).subtype(
257 class SearchRequest(univ.Sequence):
258 tagSet = univ.Sequence.tagSet.tagImplicitly(
263 namedtype.NamedType('scope', univ.Enumerated(
265 namedtype.NamedType('derefAliases', univ.Enumerated(
269univ.Integer().subtype(subtypeSpec=constraint.ValueRangeConstraint(0, maxInt))),
271univ.Integer().subtype(subtypeSpec=constraint.ValueRangeConstraint(0, maxInt))),
272 namedtype.NamedType('typesOnly', univ.Boolean()),
278 class UnbindRequest(univ.Null):
279 tagSet = univ.Sequence.tagSet.tagImplicitly(
284 class BindResponse(univ.Sequence):
285 tagSet = univ.Sequence.tagSet.tagImplicitly(
289 namedtype.NamedType('resultCode', univ.Enumerated(
315 namedtype.OptionalNamedType('serverSaslCreds', univ.OctetString().subtype(
320 class LDAPResult(univ.Sequence):
322 namedtype.NamedType('resultCode', univ.Enumerated(
351 class SearchResultReference(univ.SequenceOf):
352 tagSet = univ.Sequence.tagSet.tagImplicitly(
359 tagSet = univ.Sequence.tagSet.tagImplicitly(
364 class AttributeTypeAndValues(univ.Sequence):
367 namedtype.NamedType('vals', univ.SetOf(componentType=AttributeValue()))
371 class ModifyRequest(univ.Sequence):
372 tagSet = univ.Sequence.tagSet.tagImplicitly(
378 univ.SequenceOf(
379 componentType=univ.Sequence(
382 …'operation', univ.Enumerated(namedValues=namedval.NamedValues(('add', 0), ('delete', 1), ('replace…
391 tagSet = univ.Sequence.tagSet.tagImplicitly(
396 class AttributeList(univ.SequenceOf):
397 componentType = univ.Sequence(
400 namedtype.NamedType('vals', univ.SetOf(componentType=AttributeValue()))
405 class AddRequest(univ.Sequence):
406 tagSet = univ.Sequence.tagSet.tagImplicitly(
416 tagSet = univ.Sequence.tagSet.tagImplicitly(
422 tagSet = univ.Sequence.tagSet.tagImplicitly(
428 tagSet = univ.Sequence.tagSet.tagImplicitly(
433 class ModifyDNRequest(univ.Sequence):
434 tagSet = univ.Sequence.tagSet.tagImplicitly(
440 namedtype.NamedType('deleteoldrdn', univ.Boolean()),
448 tagSet = univ.Sequence.tagSet.tagImplicitly(
453 class CompareRequest(univ.Sequence):
454 tagSet = univ.Sequence.tagSet.tagImplicitly(
464 tagSet = univ.Sequence.tagSet.tagImplicitly(
470 tagSet = univ.Sequence.tagSet.tagImplicitly(
475 class ExtendedRequest(univ.Sequence):
476 tagSet = univ.Sequence.tagSet.tagImplicitly(
482 namedtype.OptionalNamedType('requestValue', univ.OctetString().subtype(
487 class ExtendedResponse(univ.Sequence):
488 tagSet = univ.Sequence.tagSet.tagImplicitly(
492 namedtype.NamedType('resultCode', univ.Enumerated(
521 namedtype.OptionalNamedType('response', univ.OctetString().subtype(
526 class MessageID(univ.Integer):
527 subtypeSpec = univ.Integer.subtypeSpec + constraint.ValueRangeConstraint(
532 class LDAPMessage(univ.Sequence):
536 'protocolOp', univ.Choice(