UNPKG

@wildboar/pkcs

Version:
20 lines (19 loc) 524 B
import { OCTET_STRING } from "asn1-ts"; import { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca"; export { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca"; export { certTypes } from "../PKCS-9/certTypes.va"; /** * @summary x509Certificate * @description * * ### ASN.1 Definition: * * ```asn1 * x509Certificate BAG-TYPE ::= {OCTET STRING IDENTIFIED BY {certTypes 1}} * ``` * * @constant * @type {BAG_TYPE<OCTET_STRING>} * @implements {BAG_TYPE<OCTET_STRING>} */ export declare const x509Certificate: BAG_TYPE<OCTET_STRING>;