@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
18 lines (17 loc) • 386 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
import { pkcs_9 } from "../PKCS-9/pkcs-9.va.mjs";
/**
* @summary crlTypes
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* crlTypes OBJECT IDENTIFIER ::= {pkcs-9 23}
* ```
*
* @constant
*/
export const crlTypes = _OID.fromParts([23], pkcs_9);
/* eslint-enable */