@wildboar/pki-stub
Version:
X.510 PKI-Stub ASN.1 data structures in TypeScript
30 lines (29 loc) • 959 B
TypeScript
import { ASN1Element as _Element } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { Certificate } from "../PKI-Stub/Certificate.ta";
/**
* @summary PkiPath
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* PkiPath ::= SEQUENCE SIZE (1..MAX) OF Certificate
* ```
*/
export declare type PkiPath = Certificate[];
/**
* @summary Decodes an ASN.1 element into a(n) PkiPath
* @function
* @param {_Element} el The element being decoded.
* @returns {PkiPath} The decoded data structure.
*/
export declare function _decode_PkiPath(el: _Element): PkiPath;
/**
* @summary Encodes a(n) PkiPath into an ASN.1 Element.
* @function
* @param {value} el The element being decoded.
* @param elGetter A function that can be used to get new ASN.1 elements.
* @returns {_Element} The PkiPath, encoded as an ASN.1 Element.
*/
export declare function _encode_PkiPath(value: PkiPath, elGetter: $.ASN1Encoder<PkiPath>): _Element;