import * as $ from '@wildboar/asn1/functional'; import { LDAPString } from '../Lightweight-Directory-Access-Protocol-V3/LDAPString.ta.mjs'; /** * @summary LDAPDN * @description * * Note that LDAP DNs are _reversed_. In X.500 protocols, the RDNs are arranged * in order of descending superiority, but in LDAP, it is the opposite. * * ### ASN.1 Definition: * * ```asn1 * LDAPDN ::= LDAPString * ``` */ export type LDAPDN = LDAPString; /** * @summary Decodes an ASN.1 element into a(n) LDAPDN * @function * @param {_Element} el The element being decoded. * @returns {LDAPDN} The decoded data structure. */ export declare const _decode_LDAPDN: $.ASN1Decoder; /** * @summary Encodes a(n) LDAPDN into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The LDAPDN, encoded as an ASN.1 Element. */ export declare const _encode_LDAPDN: $.ASN1Encoder; //# sourceMappingURL=LDAPDN.ta.d.mts.map