@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
26 lines (25 loc) • 433 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
/**
* @summary pkcs_9_at_userPKCS12
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* pkcs-9-at-userPKCS12 OBJECT IDENTIFIER ::= {2 16 840 1 113730 3 1 216}
* ```
*
* @constant
*/
export const pkcs_9_at_userPKCS12 = _OID.fromParts([
2,
16,
840,
1,
113730,
3,
1,
216,
]);
/* eslint-enable */