@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
20 lines (19 loc) • 497 B
TypeScript
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 { crlTypes } from "../PKCS-9/crlTypes.va";
/**
* @summary x509CRL
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* x509CRL BAG-TYPE ::= {OCTET STRING IDENTIFIED BY {crlTypes 1}}
* ```
*
* @constant
* @type {BAG_TYPE<OCTET_STRING>}
* @implements {BAG_TYPE<OCTET_STRING>}
*/
export declare const x509CRL: BAG_TYPE<OCTET_STRING>;