@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
31 lines • 707 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.id_sha1 = void 0;
/* eslint-disable */
const asn1_ts_1 = require("asn1-ts");
/* START_OF_SYMBOL_DEFINITION id_sha1 */
/**
* @summary id_sha1
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* id-sha1 OBJECT IDENTIFIER ::= {
* iso(1) identified-organization(3) oiw(14) secsig(3) algorithms(2) 26
* }
* ```
*
* @constant
*/
exports.id_sha1 = new asn1_ts_1.ObjectIdentifier([
/* iso */ 1,
/* identified-organization */ 3,
/* oiw */ 14,
/* secsig */ 3,
/* algorithms */ 2,
26,
]);
/* END_OF_SYMBOL_DEFINITION id_sha1 */
/* eslint-enable */
//# sourceMappingURL=id-sha1.va.js.map