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