| FromAsn1 LdapOid Source | LDAPOID ::= OCTET STRING -- Constrained to <numericoid>
+ |
| FromAsn1 LdapString Source | LDAPString ::= OCTET STRING -- UTF-8 encoded,
+ |
| FromAsn1 Uri Source | URI ::= LDAPString
+ |
| FromAsn1 ReferralUris Source | Referral ::= SEQUENCE SIZE (1..MAX) OF uri URI
+ |
| FromAsn1 LdapDn Source | LDAPDN ::= LDAPString
+ |
| FromAsn1 PartialAttribute Source | PartialAttribute ::= SEQUENCE {
type AttributeDescription,
vals SET OF value AttributeValue }
- |
| FromAsn1 AttributeValue Source | AttributeValue ::= OCTET STRING
- |
| FromAsn1 AttributeDescription Source | AttributeDescription ::= LDAPString
- |
| FromAsn1 LdapResult Source | LDAPResult ::= SEQUENCE {
+ |
| FromAsn1 AttributeValue Source | AttributeValue ::= OCTET STRING
+ |
| FromAsn1 AttributeDescription Source | AttributeDescription ::= LDAPString
+ |
| FromAsn1 LdapResult Source | LDAPResult ::= SEQUENCE {
resultCode ENUMERATED {
success (0),
operationsError (1),
@@ -63,20 +63,30 @@ window.onload = function () {pageLoad();setSynopsis("mini_Ldap-Asn1-FromAsn1.htm
matchedDN LDAPDN,
diagnosticMessage LDAPString,
referral [3] Referral OPTIONAL }
- |
| FromAsn1 PartialAttributeList Source | PartialAttributeList ::= SEQUENCE OF partialAttribute PartialAttribute
- |
| FromAsn1 ProtocolServerOp Source | BindResponse ::= [APPLICATION 1] SEQUENCE {
+ |
| FromAsn1 PartialAttributeList Source | PartialAttributeList ::= SEQUENCE OF partialAttribute PartialAttribute
+ |
| FromAsn1 ProtocolServerOp Source | BindResponse ::= [APPLICATION 1] SEQUENCE {
COMPONENTS OF LDAPResult,
serverSaslCreds [7] OCTET STRING OPTIONAL }
SearchResultEntry ::= [APPLICATION 4] SEQUENCE {
objectName LDAPDN,
attributes PartialAttributeList }
+SearchResultReference ::= [APPLICATION 19] SEQUENCE
+ SIZE (1..MAX) OF uri URI
SearchResultDone ::= [APPLICATION 5] LDAPResult
ModifyResponse ::= [APPLICATION 7] LDAPResult
AddResponse ::= [APPLICATION 9] LDAPResult
DelResponse ::= [APPLICATION 11] LDAPResult
+ ModifyDNResponse ::= [APPLICATION 13] LDAPResult
CompareResponse ::= [APPLICATION 15] LDAPResult
- |
| FromAsn1 Id Source | MessageID ::= INTEGER (0 .. maxInt)
- |
| FromAsn1 op => FromAsn1 (LdapMessage op) Source | LDAPMessage ::= SEQUENCE {
+ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
+ COMPONENTS OF LDAPResult,
+ responseName [10] LDAPOID OPTIONAL,
+ responseValue [11] OCTET STRING OPTIONAL }
+IntermediateResponse ::= [APPLICATION 25] SEQUENCE {
+ responseName [0] LDAPOID OPTIONAL,
+ responseValue [1] OCTET STRING OPTIONAL }
+ |
| FromAsn1 Id Source | MessageID ::= INTEGER (0 .. maxInt)
+ |
| FromAsn1 op => FromAsn1 (LdapMessage op) Source | LDAPMessage ::= SEQUENCE {
messageID MessageID,
protocolOp CHOICE {
bindRequest BindRequest,
@@ -90,4 +100,4 @@ window.onload = function () {pageLoad();setSynopsis("mini_Ldap-Asn1-FromAsn1.htm
addResponse AddResponse,
... },
controls [0] Controls OPTIONAL }
- |
| (FromAsn1 a, FromAsn1 b) => FromAsn1 (a, b) Source | |