@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
31 lines • 691 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.id_md5 = void 0;
/* eslint-disable */
const asn1_ts_1 = require("asn1-ts");
/* START_OF_SYMBOL_DEFINITION id_md5 */
/**
* @summary id_md5
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* id-md5 OBJECT IDENTIFIER ::= {
* iso(1) member-body(2) us(840) rsadsi(113549) digestAlgorithm(2) 5
* }
* ```
*
* @constant
*/
exports.id_md5 = new asn1_ts_1.ObjectIdentifier([
/* iso */ 1,
/* member-body */ 2,
/* us */ 840,
/* rsadsi */ 113549,
/* digestAlgorithm */ 2,
5,
]);
/* END_OF_SYMBOL_DEFINITION id_md5 */
/* eslint-enable */
//# sourceMappingURL=id-md5.va.js.map