@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
131 lines • 4.16 kB
text/typescript
import { ASN1Element as _Element } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
import { Name } from "@wildboar/x500/InformationFramework";
import { Attributes } from "../PKCS-10/Attributes.ta.mjs";
import { CertificationRequestInfo_version } from "../PKCS-10/CertificationRequestInfo-version.ta.mjs";
import { SubjectPublicKeyInfo } from "../PKCS-10/SubjectPublicKeyInfo.ta.mjs";
/**
* @summary CertificationRequestInfo
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* CertificationRequestInfo ::= SEQUENCE {
* version INTEGER { v1(0) } (v1,...),
* subject Name,
* subjectPKInfo SubjectPublicKeyInfo{{ PKInfoAlgorithms }},
* attributes [0] Attributes{{ CRIAttributes }}
* }
* ```
*
*/
export declare class CertificationRequestInfo {
/**
* @summary `version`.
* @public
* @readonly
*/
readonly version: CertificationRequestInfo_version;
/**
* @summary `subject`.
* @public
* @readonly
*/
readonly subject: Name;
/**
* @summary `subjectPKInfo`.
* @public
* @readonly
*/
readonly subjectPKInfo: SubjectPublicKeyInfo;
/**
* @summary `attributes`.
* @public
* @readonly
*/
readonly attributes: Attributes;
constructor(
/**
* @summary `version`.
* @public
* @readonly
*/
version: CertificationRequestInfo_version,
/**
* @summary `subject`.
* @public
* @readonly
*/
subject: Name,
/**
* @summary `subjectPKInfo`.
* @public
* @readonly
*/
subjectPKInfo: SubjectPublicKeyInfo,
/**
* @summary `attributes`.
* @public
* @readonly
*/
attributes: Attributes);
/**
* @summary Restructures an object into a CertificationRequestInfo
* @description
*
* This takes an `object` and converts it to a `CertificationRequestInfo`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `CertificationRequestInfo`.
* @returns {CertificationRequestInfo}
*/
static _from_object(_o: {
[_K in keyof CertificationRequestInfo]: CertificationRequestInfo[_K];
}): CertificationRequestInfo;
}
/**
* @summary The Leading Root Component Types of CertificationRequestInfo
* @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_CertificationRequestInfo: $.ComponentSpec[];
/**
* @summary The Trailing Root Component Types of CertificationRequestInfo
* @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_CertificationRequestInfo: $.ComponentSpec[];
/**
* @summary The Extension Addition Component Types of CertificationRequestInfo
* @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_CertificationRequestInfo: $.ComponentSpec[];
/**
* @summary Decodes an ASN.1 element into a(n) CertificationRequestInfo
* @function
* @param {_Element} el The element being decoded.
* @returns {CertificationRequestInfo} The decoded data structure.
*/
export declare function _decode_CertificationRequestInfo(el: _Element): CertificationRequestInfo;
/**
* @summary Encodes a(n) CertificationRequestInfo 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 CertificationRequestInfo, encoded as an ASN.1 Element.
*/
export declare function _encode_CertificationRequestInfo(value: CertificationRequestInfo, elGetter: $.ASN1Encoder<CertificationRequestInfo>): _Element;
//# sourceMappingURL=CertificationRequestInfo.ta.d.mts.map