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