@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
27 lines (26 loc) • 608 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
/**
* @summary nistAlgorithms
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* nistAlgorithms OBJECT IDENTIFIER ::= {joint-iso-itu-t(2) country(16)
* us(840) organization(1)
* gov(101) csor(3) 4}
* ```
*
* @constant
*/
export const nistAlgorithms = _OID.fromParts([
/* joint-iso-itu-t */ 2,
/* country */ 16,
/* us */ 840,
/* organization */ 1,
/* gov */ 101,
/* csor */ 3,
4,
]);
/* eslint-enable */