@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
104 lines (103 loc) • 2.89 kB
TypeScript
import { ASN1Element as _Element, OBJECT_IDENTIFIER } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
export { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca";
export { CRLTypes } from "../PKCS-12/CRLTypes.osa";
/**
* @summary CRLBag
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* CRLBag ::= SEQUENCE {
* crlId BAG-TYPE.&id ({CRLTypes}),
* crltValue [0] EXPLICIT BAG-TYPE.&Type ({CRLTypes}{@crlId})
* }
* ```
*
* @class
*/
export declare class CRLBag {
/**
* @summary `crlId`.
* @public
* @readonly
*/
readonly crlId: OBJECT_IDENTIFIER;
/**
* @summary `crltValue`.
* @public
* @readonly
*/
readonly crltValue: _Element;
constructor(
/**
* @summary `crlId`.
* @public
* @readonly
*/
crlId: OBJECT_IDENTIFIER,
/**
* @summary `crltValue`.
* @public
* @readonly
*/
crltValue: _Element);
/**
* @summary Restructures an object into a CRLBag
* @description
*
* This takes an `object` and converts it to a `CRLBag`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `CRLBag`.
* @returns {CRLBag}
*/
static _from_object(_o: {
[_K in keyof CRLBag]: CRLBag[_K];
}): CRLBag;
}
/**
* @summary The Leading Root Component Types of CRLBag
* @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_CRLBag: $.ComponentSpec[];
/**
* @summary The Trailing Root Component Types of CRLBag
* @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_CRLBag: $.ComponentSpec[];
/**
* @summary The Extension Addition Component Types of CRLBag
* @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_CRLBag: $.ComponentSpec[];
/**
* @summary Decodes an ASN.1 element into a(n) CRLBag
* @function
* @param {_Element} el The element being decoded.
* @returns {CRLBag} The decoded data structure.
*/
export declare function _decode_CRLBag(el: _Element): CRLBag;
/**
* @summary Encodes a(n) CRLBag 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 CRLBag, encoded as an ASN.1 Element.
*/
export declare function _encode_CRLBag(value: CRLBag, elGetter: $.ASN1Encoder<CRLBag>): _Element;