@wildboar/pki-stub
Version:
X.510 PKI-Stub ASN.1 data structures in TypeScript
18 lines (17 loc) • 712 B
JavaScript
import { _decode_RDNSequence, _encode_RDNSequence, } from "../PKI-Stub/RDNSequence.ta.mjs";
/**
* @summary Decodes an ASN.1 element into a(n) DistinguishedName
* @function
* @param {_Element} el The element being decoded.
* @returns {DistinguishedName} The decoded data structure.
*/
export const _decode_DistinguishedName = _decode_RDNSequence;
/**
* @summary Encodes a(n) DistinguishedName 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 DistinguishedName, encoded as an ASN.1 Element.
*/
export const _encode_DistinguishedName = _encode_RDNSequence;
/* eslint-enable */