UNPKG

pkcs-ts

Version:

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

19 lines 1.31 kB
import { ASN1Element as _Element, GeneralizedTime, OCTET_STRING, OPTIONAL } from "asn1-ts"; import * as $ from "asn1-ts/dist/node/functional"; import { OtherKeyAttribute } from "../CryptographicMessageSyntax/OtherKeyAttribute.ta"; export { OtherKeyAttribute, _decode_OtherKeyAttribute, _encode_OtherKeyAttribute, } from "../CryptographicMessageSyntax/OtherKeyAttribute.ta"; export declare class KEKIdentifier { readonly keyIdentifier: OCTET_STRING; readonly date: OPTIONAL<GeneralizedTime>; readonly other: OPTIONAL<OtherKeyAttribute>; constructor(keyIdentifier: OCTET_STRING, date: OPTIONAL<GeneralizedTime>, other: OPTIONAL<OtherKeyAttribute>); static _from_object(_o: { [_K in keyof KEKIdentifier]: KEKIdentifier[_K]; }): KEKIdentifier; } export declare const _root_component_type_list_1_spec_for_KEKIdentifier: $.ComponentSpec[]; export declare const _root_component_type_list_2_spec_for_KEKIdentifier: $.ComponentSpec[]; export declare const _extension_additions_list_spec_for_KEKIdentifier: $.ComponentSpec[]; export declare function _decode_KEKIdentifier(el: _Element): KEKIdentifier; export declare function _encode_KEKIdentifier(value: KEKIdentifier, elGetter: $.ASN1Encoder<KEKIdentifier>): _Element; //# sourceMappingURL=KEKIdentifier.ta.d.ts.map