UNPKG

@wildboar/pkcs

Version:
105 lines (104 loc) 2.96 kB
import { ASN1Element as _Element, OBJECT_IDENTIFIER } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; import { ObjectValue } from "../PKCS-15/ObjectValue.ta"; export { ObjectValue, _get_decoder_for_ObjectValue, _get_encoder_for_ObjectValue, } from "../PKCS-15/ObjectValue.ta"; export { PKCS15_OPAQUE } from "../PKCS-15/PKCS15-OPAQUE.oca"; /** * @summary OidDO * @description * * ### ASN.1 Definition: * * ```asn1 * OidDO ::= SEQUENCE { * id OBJECT IDENTIFIER, * value ObjectValue {PKCS15-OPAQUE.&Type} * } * ``` * * @class */ export declare class OidDO { /** * @summary `id`. * @public * @readonly */ readonly id: OBJECT_IDENTIFIER; /** * @summary `value`. * @public * @readonly */ readonly value: ObjectValue<_Element>; constructor( /** * @summary `id`. * @public * @readonly */ id: OBJECT_IDENTIFIER, /** * @summary `value`. * @public * @readonly */ value: ObjectValue<_Element>); /** * @summary Restructures an object into a OidDO * @description * * This takes an `object` and converts it to a `OidDO`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `OidDO`. * @returns {OidDO} */ static _from_object(_o: { [_K in keyof OidDO]: OidDO[_K]; }): OidDO; } /** * @summary The Leading Root Component Types of OidDO * @description * * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_1_spec_for_OidDO: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of OidDO * @description * * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_2_spec_for_OidDO: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of OidDO * @description * * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE. * * @constant */ export declare const _extension_additions_list_spec_for_OidDO: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) OidDO * @function * @param {_Element} el The element being decoded. * @returns {OidDO} The decoded data structure. */ export declare function _decode_OidDO(el: _Element): OidDO; /** * @summary Encodes a(n) OidDO 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 OidDO, encoded as an ASN.1 Element. */ export declare function _encode_OidDO(value: OidDO, elGetter: $.ASN1Encoder<OidDO>): _Element;