pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
20 lines • 1.3 kB
TypeScript
import { ASN1Element as _Element } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { Certificate } from "x500-ts/dist/node/modules/AuthenticationFramework/Certificate.ta";
import { Attributes } from "../PKCS7/Attributes.ta";
import { Version } from "../PKCS7/Version.ta";
export declare class ExtendedCertificateInfo {
readonly version: Version;
readonly certificate: Certificate;
readonly attributes: Attributes;
constructor(version: Version, certificate: Certificate, attributes: Attributes);
static _from_object(_o: {
[_K in keyof ExtendedCertificateInfo]: ExtendedCertificateInfo[_K];
}): ExtendedCertificateInfo;
}
export declare const _root_component_type_list_1_spec_for_ExtendedCertificateInfo: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_ExtendedCertificateInfo: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_ExtendedCertificateInfo: $.ComponentSpec[];
export declare function _decode_ExtendedCertificateInfo(el: _Element): ExtendedCertificateInfo;
export declare function _encode_ExtendedCertificateInfo(value: ExtendedCertificateInfo, elGetter: $.ASN1Encoder<ExtendedCertificateInfo>): _Element;
//# sourceMappingURL=ExtendedCertificateInfo.ta.d.ts.map