@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
101 lines • 3.03 kB
text/typescript
import { ASN1Element as _Element, INTEGER, OCTET_STRING } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
/**
* @summary RC2CBCParameter
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* RC2CBCParameter ::= SEQUENCE {
* rc2ParameterVersion INTEGER,
* iv OCTET STRING
* }
* ```
*
*/
export declare class RC2CBCParameter {
/**
* @summary `rc2ParameterVersion`.
* @public
* @readonly
*/
readonly rc2ParameterVersion: INTEGER;
/**
* @summary `iv`.
* @public
* @readonly
*/
readonly iv: OCTET_STRING;
constructor(
/**
* @summary `rc2ParameterVersion`.
* @public
* @readonly
*/
rc2ParameterVersion: INTEGER,
/**
* @summary `iv`.
* @public
* @readonly
*/
iv: OCTET_STRING);
/**
* @summary Restructures an object into a RC2CBCParameter
* @description
*
* This takes an `object` and converts it to a `RC2CBCParameter`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `RC2CBCParameter`.
* @returns {RC2CBCParameter}
*/
static _from_object(_o: {
[_K in keyof RC2CBCParameter]: RC2CBCParameter[_K];
}): RC2CBCParameter;
}
/**
* @summary The Leading Root Component Types of RC2CBCParameter
* @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_RC2CBCParameter: $.ComponentSpec[];
/**
* @summary The Trailing Root Component Types of RC2CBCParameter
* @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_RC2CBCParameter: $.ComponentSpec[];
/**
* @summary The Extension Addition Component Types of RC2CBCParameter
* @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_RC2CBCParameter: $.ComponentSpec[];
/**
* @summary Decodes an ASN.1 element into a(n) RC2CBCParameter
* @function
* @param {_Element} el The element being decoded.
* @returns {RC2CBCParameter} The decoded data structure.
*/
export declare function _decode_RC2CBCParameter(el: _Element): RC2CBCParameter;
/**
* @summary Encodes a(n) RC2CBCParameter 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 RC2CBCParameter, encoded as an ASN.1 Element.
*/
export declare function _encode_RC2CBCParameter(value: RC2CBCParameter, elGetter: $.ASN1Encoder<RC2CBCParameter>): _Element;
//# sourceMappingURL=RC2CBCParameter.ta.d.mts.map