@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
154 lines • 4.26 kB
text/typescript
import { ASN1Element as _Element, INTEGER, OBJECT_IDENTIFIER, OPTIONAL } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
import { Reference } from "../PKCS-15/Reference.ta.mjs";
/**
* @summary AlgorithmInfo
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* AlgorithmInfo ::= SEQUENCE {
* reference Reference,
* algorithm PKCS15-ALGORITHM.&id({AlgorithmSet}),
* parameters PKCS15-ALGORITHM.&Parameters({AlgorithmSet}{@algorithm}),
* supportedOperations PKCS15-ALGORITHM.&Operations({AlgorithmSet}{@algorithm}),
* algId PKCS15-ALGORITHM.&objectIdentifier({AlgorithmSet}{@algorithm}) OPTIONAL,
* algRef Reference OPTIONAL
* }
* ```
*
*/
export declare class AlgorithmInfo {
/**
* @summary `reference`.
* @public
* @readonly
*/
readonly reference: Reference;
/**
* @summary `algorithm`.
* @public
* @readonly
*/
readonly algorithm: INTEGER;
/**
* @summary `parameters`.
* @public
* @readonly
*/
readonly parameters: _Element;
/**
* @summary `supportedOperations`.
* @public
* @readonly
*/
readonly supportedOperations: _Element;
/**
* @summary `algId`.
* @public
* @readonly
*/
readonly algId?: OPTIONAL<OBJECT_IDENTIFIER>;
/**
* @summary `algRef`.
* @public
* @readonly
*/
readonly algRef?: OPTIONAL<Reference>;
constructor(
/**
* @summary `reference`.
* @public
* @readonly
*/
reference: Reference,
/**
* @summary `algorithm`.
* @public
* @readonly
*/
algorithm: INTEGER,
/**
* @summary `parameters`.
* @public
* @readonly
*/
parameters: _Element,
/**
* @summary `supportedOperations`.
* @public
* @readonly
*/
supportedOperations: _Element,
/**
* @summary `algId`.
* @public
* @readonly
*/
algId?: OPTIONAL<OBJECT_IDENTIFIER>,
/**
* @summary `algRef`.
* @public
* @readonly
*/
algRef?: OPTIONAL<Reference>);
/**
* @summary Restructures an object into a AlgorithmInfo
* @description
*
* This takes an `object` and converts it to a `AlgorithmInfo`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `AlgorithmInfo`.
* @returns {AlgorithmInfo}
*/
static _from_object(_o: {
[_K in keyof AlgorithmInfo]: AlgorithmInfo[_K];
}): AlgorithmInfo;
}
/**
* @summary The Leading Root Component Types of AlgorithmInfo
* @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_AlgorithmInfo: $.ComponentSpec[];
/**
* @summary The Trailing Root Component Types of AlgorithmInfo
* @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_AlgorithmInfo: $.ComponentSpec[];
/**
* @summary The Extension Addition Component Types of AlgorithmInfo
* @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_AlgorithmInfo: $.ComponentSpec[];
/**
* @summary Decodes an ASN.1 element into a(n) AlgorithmInfo
* @function
* @param {_Element} el The element being decoded.
* @returns {AlgorithmInfo} The decoded data structure.
*/
export declare function _decode_AlgorithmInfo(el: _Element): AlgorithmInfo;
/**
* @summary Encodes a(n) AlgorithmInfo 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 AlgorithmInfo, encoded as an ASN.1 Element.
*/
export declare function _encode_AlgorithmInfo(value: AlgorithmInfo, elGetter: $.ASN1Encoder<AlgorithmInfo>): _Element;
//# sourceMappingURL=AlgorithmInfo.ta.d.mts.map