@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
29 lines • 745 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.dh_public_number = void 0;
/* eslint-disable */
const asn1_ts_1 = require("asn1-ts");
/* START_OF_SYMBOL_DEFINITION dh_public_number */
/**
* @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
*/
exports.dh_public_number = new asn1_ts_1.ObjectIdentifier([
/* iso */ 1,
/* member-body */ 2,
/* us */ 840,
/* ansi-x942 */ 10046,
/* number-type */ 2,
1,
]);
/* END_OF_SYMBOL_DEFINITION dh_public_number */
/* eslint-enable */
//# sourceMappingURL=dh-public-number.va.js.map