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