@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
128 lines • 3.43 kB
text/typescript
import { ASN1Element as _Element, OCTET_STRING, OPTIONAL, UTF8String } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
import { DDO } from "../PKCS-15/DDO.ta.mjs";
/**
* @summary DIRRecord
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* DIRRecord ::= [APPLICATION 1] SEQUENCE {
* aid [APPLICATION 15] OCTET STRING,
* label [APPLICATION 16] UTF8String OPTIONAL,
* path [APPLICATION 17] OCTET STRING,
* ddo [APPLICATION 19] DDO OPTIONAL
* }
* ```
*
*/
export declare class DIRRecord {
/**
* @summary `aid`.
* @public
* @readonly
*/
readonly aid: OCTET_STRING;
/**
* @summary `label`.
* @public
* @readonly
*/
readonly label: OPTIONAL<UTF8String>;
/**
* @summary `path`.
* @public
* @readonly
*/
readonly path: OCTET_STRING;
/**
* @summary `ddo`.
* @public
* @readonly
*/
readonly ddo?: OPTIONAL<DDO>;
constructor(
/**
* @summary `aid`.
* @public
* @readonly
*/
aid: OCTET_STRING,
/**
* @summary `label`.
* @public
* @readonly
*/
label: OPTIONAL<UTF8String>,
/**
* @summary `path`.
* @public
* @readonly
*/
path: OCTET_STRING,
/**
* @summary `ddo`.
* @public
* @readonly
*/
ddo?: OPTIONAL<DDO>);
/**
* @summary Restructures an object into a DIRRecord
* @description
*
* This takes an `object` and converts it to a `DIRRecord`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `DIRRecord`.
* @returns {DIRRecord}
*/
static _from_object(_o: {
[_K in keyof DIRRecord]: DIRRecord[_K];
}): DIRRecord;
}
/**
* @summary The Leading Root Component Types of DIRRecord
* @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_DIRRecord: $.ComponentSpec[];
/**
* @summary The Trailing Root Component Types of DIRRecord
* @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_DIRRecord: $.ComponentSpec[];
/**
* @summary The Extension Addition Component Types of DIRRecord
* @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_DIRRecord: $.ComponentSpec[];
/**
* @summary Decodes an ASN.1 element into a(n) DIRRecord
* @function
* @param {_Element} el The element being decoded.
* @returns {DIRRecord} The decoded data structure.
*/
export declare function _decode_DIRRecord(el: _Element): DIRRecord;
/**
* @summary Encodes a(n) DIRRecord 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 DIRRecord, encoded as an ASN.1 Element.
*/
export declare function _encode_DIRRecord(value: DIRRecord, elGetter: $.ASN1Encoder<DIRRecord>): _Element;
//# sourceMappingURL=DIRRecord.ta.d.mts.map