sha512.js 254 B

123456
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.sha512 = void 0;
  4. const sha512_1 = require("@noble/hashes/sha512");
  5. const utils_js_1 = require("./utils.js");
  6. exports.sha512 = (0, utils_js_1.wrapHash)(sha512_1.sha512);