ethers.js/packages/sha2/lib.esm/sha2.js

27 lines
1.0 KiB
JavaScript
Raw Normal View History

"use strict";
2020-11-17 07:07:24 +03:00
import hash from "hash.js";
//const _ripemd160 = _hash.ripemd160;
import { arrayify } from "@ethersproject/bytes";
2020-11-17 07:07:24 +03:00
import { SupportedAlgorithm } from "./types";
import { Logger } from "@ethersproject/logger";
import { version } from "./_version";
const logger = new Logger(version);
export function ripemd160(data) {
return "0x" + (hash.ripemd160().update(arrayify(data)).digest("hex"));
}
export function sha256(data) {
return "0x" + (hash.sha256().update(arrayify(data)).digest("hex"));
}
export function sha512(data) {
return "0x" + (hash.sha512().update(arrayify(data)).digest("hex"));
}
export function computeHmac(algorithm, key, data) {
2020-01-21 03:43:50 +03:00
if (!SupportedAlgorithm[algorithm]) {
logger.throwError("unsupported algorithm " + algorithm, Logger.errors.UNSUPPORTED_OPERATION, {
operation: "hmac",
algorithm: algorithm
});
}
return "0x" + hash.hmac(hash[algorithm], arrayify(key)).update(arrayify(data)).digest("hex");
}
2020-11-17 07:07:24 +03:00
//# sourceMappingURL=sha2.js.map