UNPKG

pkcs-ts

Version:

PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More

18 lines 1.33 kB
import { ASN1Element as _Element, OCTET_STRING } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; import { ObjectValue } from "../PKCS-15/ObjectValue.ta"; export { ObjectValue, _get_decoder_for_ObjectValue, _get_encoder_for_ObjectValue, } from "../PKCS-15/ObjectValue.ta"; export declare class GenericSecretKeyAttributes { readonly value: ObjectValue<OCTET_STRING>; readonly _unrecognizedExtensionsList: _Element[]; constructor(value: ObjectValue<OCTET_STRING>, _unrecognizedExtensionsList?: _Element[]); static _from_object(_o: { [_K in keyof GenericSecretKeyAttributes]: GenericSecretKeyAttributes[_K]; }): GenericSecretKeyAttributes; } export declare const _root_component_type_list_1_spec_for_GenericSecretKeyAttributes: $.ComponentSpec[]; export declare const _root_component_type_list_2_spec_for_GenericSecretKeyAttributes: $.ComponentSpec[]; export declare const _extension_additions_list_spec_for_GenericSecretKeyAttributes: $.ComponentSpec[]; export declare function _decode_GenericSecretKeyAttributes(el: _Element): GenericSecretKeyAttributes; export declare function _encode_GenericSecretKeyAttributes(value: GenericSecretKeyAttributes, elGetter: $.ASN1Encoder<GenericSecretKeyAttributes>): _Element; //# sourceMappingURL=GenericSecretKeyAttributes.ta.d.ts.map