sha256.js 254 B

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