@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
21 lines (20 loc) • 327 B
JavaScript
import { x509CRL } from "../PKCS-12/x509CRL.oa.mjs";
/**
* @summary CRLTypes
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* CRLTypes BAG-TYPE ::= {
* x509CRL,
* ... -- For future extensions
* }
* ```
*
* @constant
* @type {BAG_TYPE[]}
*
*/
export const CRLTypes = [x509CRL];
/* eslint-enable */