pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
19 lines • 1.4 kB
TypeScript
import { ASN1Element as _Element, OBJECT_IDENTIFIER, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { Label } from "../PKCS-15/Label.ta";
export { Label, _decode_Label, _encode_Label } from "../PKCS-15/Label.ta";
export declare class CommonDataObjectAttributes {
readonly applicationName: OPTIONAL<Label>;
readonly applicationOID: OPTIONAL<OBJECT_IDENTIFIER>;
readonly _unrecognizedExtensionsList: _Element[];
constructor(applicationName: OPTIONAL<Label>, applicationOID: OPTIONAL<OBJECT_IDENTIFIER>, _unrecognizedExtensionsList?: _Element[]);
static _from_object(_o: {
[_K in keyof CommonDataObjectAttributes]: CommonDataObjectAttributes[_K];
}): CommonDataObjectAttributes;
}
export declare const _root_component_type_list_1_spec_for_CommonDataObjectAttributes: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_CommonDataObjectAttributes: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_CommonDataObjectAttributes: $.ComponentSpec[];
export declare function _decode_CommonDataObjectAttributes(el: _Element): CommonDataObjectAttributes;
export declare function _encode_CommonDataObjectAttributes(value: CommonDataObjectAttributes, elGetter: $.ASN1Encoder<CommonDataObjectAttributes>): _Element;
//# sourceMappingURL=CommonDataObjectAttributes.ta.d.ts.map