@wildboar/pki-stub
Version:
X.510 PKI-Stub ASN.1 data structures in TypeScript
30 lines (29 loc) • 972 B
TypeScript
import { ASN1Element as _Element } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
/**
* @summary AlgoInvoke
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* AlgoInvoke{ALGORITHM:SupportedAlgorithms} ::=
* ALGORITHM.&DynParms({SupportedAlgorithms})
* ```
*/
export declare type AlgoInvoke = _Element;
/**
* @summary Decodes an ASN.1 element into a(n) AlgoInvoke
* @function
* @param {_Element} el The element being decoded.
* @returns {AlgoInvoke} The decoded data structure.
*/
export declare function _decode_AlgoInvoke(el: _Element): _Element;
/**
* @summary Encodes a(n) AlgoInvoke 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 AlgoInvoke, encoded as an ASN.1 Element.
*/
export declare function _encode_AlgoInvoke(value: AlgoInvoke, elGetter: $.ASN1Encoder<AlgoInvoke>): _Element;