@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
24 lines (23 loc) • 498 B
JavaScript
/* eslint-disable */
import { ObjectIdentifier as _OID } from "@wildboar/asn1";
/**
* @summary dh_public_number
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* dh-public-number OBJECT IDENTIFIER ::= {iso(1) member-body(2) us(840) ansi-x942(10046) number-type(2) 1}
* ```
*
* @constant
*/
export const dh_public_number = _OID.fromParts([
/* iso */ 1,
/* member-body */ 2,
/* us */ 840,
/* ansi-x942 */ 10046,
/* number-type */ 2,
1,
]);
/* eslint-enable */