pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
21 lines • 1.63 kB
TypeScript
import { ASN1Element as _Element, GeneralizedTime, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { OtherKeyAttribute } from "../PKCS7/OtherKeyAttribute.ta";
import { SubjectKeyIdentifier } from "../PKCS7/SubjectKeyIdentifier.ta";
export { OtherKeyAttribute, _decode_OtherKeyAttribute, _encode_OtherKeyAttribute, } from "../PKCS7/OtherKeyAttribute.ta";
export { SubjectKeyIdentifier, _decode_SubjectKeyIdentifier, _encode_SubjectKeyIdentifier, } from "../PKCS7/SubjectKeyIdentifier.ta";
export declare class RecipientKeyIdentifier {
readonly subjectKeyIdentifier: SubjectKeyIdentifier;
readonly date: OPTIONAL<GeneralizedTime>;
readonly otherKeyAttribute: OPTIONAL<OtherKeyAttribute>;
constructor(subjectKeyIdentifier: SubjectKeyIdentifier, date: OPTIONAL<GeneralizedTime>, otherKeyAttribute: OPTIONAL<OtherKeyAttribute>);
static _from_object(_o: {
[_K in keyof RecipientKeyIdentifier]: RecipientKeyIdentifier[_K];
}): RecipientKeyIdentifier;
}
export declare const _root_component_type_list_1_spec_for_RecipientKeyIdentifier: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_RecipientKeyIdentifier: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_RecipientKeyIdentifier: $.ComponentSpec[];
export declare function _decode_RecipientKeyIdentifier(el: _Element): RecipientKeyIdentifier;
export declare function _encode_RecipientKeyIdentifier(value: RecipientKeyIdentifier, elGetter: $.ASN1Encoder<RecipientKeyIdentifier>): _Element;
//# sourceMappingURL=RecipientKeyIdentifier.ta.d.ts.map