pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
19 lines • 1.46 kB
TypeScript
import { ASN1Element as _Element, GeneralizedTime, OCTET_STRING, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { OtherKeyAttribute } from "../PKCS7/OtherKeyAttribute.ta";
export { OtherKeyAttribute, _decode_OtherKeyAttribute, _encode_OtherKeyAttribute, } from "../PKCS7/OtherKeyAttribute.ta";
export declare class KeyEncryptionKeyIdentifier {
readonly keyIdentifier: OCTET_STRING;
readonly date: OPTIONAL<GeneralizedTime>;
readonly otherKeyAttribute: OPTIONAL<OtherKeyAttribute>;
constructor(keyIdentifier: OCTET_STRING, date: OPTIONAL<GeneralizedTime>, otherKeyAttribute: OPTIONAL<OtherKeyAttribute>);
static _from_object(_o: {
[_K in keyof KeyEncryptionKeyIdentifier]: KeyEncryptionKeyIdentifier[_K];
}): KeyEncryptionKeyIdentifier;
}
export declare const _root_component_type_list_1_spec_for_KeyEncryptionKeyIdentifier: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_KeyEncryptionKeyIdentifier: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_KeyEncryptionKeyIdentifier: $.ComponentSpec[];
export declare function _decode_KeyEncryptionKeyIdentifier(el: _Element): KeyEncryptionKeyIdentifier;
export declare function _encode_KeyEncryptionKeyIdentifier(value: KeyEncryptionKeyIdentifier, elGetter: $.ASN1Encoder<KeyEncryptionKeyIdentifier>): _Element;
//# sourceMappingURL=KeyEncryptionKeyIdentifier.ta.d.ts.map