pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
18 lines • 1.3 kB
TypeScript
import { ASN1Element as _Element, OCTET_STRING, OPTIONAL } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { ContentType } from "../CryptographicMessageSyntax/ContentType.ta";
export { ContentType, _decode_ContentType, _encode_ContentType, } from "../CryptographicMessageSyntax/ContentType.ta";
export declare class EncapsulatedContentInfo {
readonly eContentType: ContentType;
readonly eContent: OPTIONAL<OCTET_STRING>;
constructor(eContentType: ContentType, eContent: OPTIONAL<OCTET_STRING>);
static _from_object(_o: {
[_K in keyof EncapsulatedContentInfo]: EncapsulatedContentInfo[_K];
}): EncapsulatedContentInfo;
}
export declare const _root_component_type_list_1_spec_for_EncapsulatedContentInfo: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_EncapsulatedContentInfo: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_EncapsulatedContentInfo: $.ComponentSpec[];
export declare function _decode_EncapsulatedContentInfo(el: _Element): EncapsulatedContentInfo;
export declare function _encode_EncapsulatedContentInfo(value: EncapsulatedContentInfo, elGetter: $.ASN1Encoder<EncapsulatedContentInfo>): _Element;
//# sourceMappingURL=EncapsulatedContentInfo.ta.d.ts.map