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