UNPKG

@wildboar/pkcs

Version:
23 lines (22 loc) 473 B
import { sdsiCertificate } from "../PKCS-12/sdsiCertificate.oa.mjs"; import { x509Certificate } from "../PKCS-12/x509Certificate.oa.mjs"; /** * @summary CertTypes * @description * * ### ASN.1 Definition: * * ```asn1 * CertTypes BAG-TYPE ::= { * x509Certificate | * sdsiCertificate, * ... -- For future extensions * } * ``` * * @constant * @type {BAG_TYPE[]} * */ export const CertTypes = [x509Certificate, sdsiCertificate]; /* eslint-enable */