You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
460 B
14 lines
460 B
|
2 months ago
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.sha1 = exports.SHA1 = void 0;
|
||
|
|
/**
|
||
|
|
* SHA1 (RFC 3174) legacy hash function.
|
||
|
|
* @module
|
||
|
|
* @deprecated
|
||
|
|
*/
|
||
|
|
const legacy_ts_1 = require("./legacy.js");
|
||
|
|
/** @deprecated Use import from `noble/hashes/legacy` module */
|
||
|
|
exports.SHA1 = legacy_ts_1.SHA1;
|
||
|
|
/** @deprecated Use import from `noble/hashes/legacy` module */
|
||
|
|
exports.sha1 = legacy_ts_1.sha1;
|
||
|
|
//# sourceMappingURL=sha1.js.map
|