ethers.js/packages/sha2/src.ts/index.ts

38 lines
1.2 KiB
TypeScript
Raw Normal View History

2019-05-15 01:25:46 +03:00
"use strict";
import { createHash, createHmac } from 'crypto';
import { arrayify, BytesLike } from '@ethersproject/bytes';
import { Logger } from "@ethersproject/logger";
import { version } from "./_version";
const logger = new Logger(version);
2019-05-15 01:25:46 +03:00
export enum SupportedAlgorithms { sha256 = "sha256", sha512 = "sha512" };
export function ripemd160(data: BytesLike): string {
return "0x" + createHash("ripemd160").update(Buffer.from(arrayify(data))).digest("hex")
}
export function sha256(data: BytesLike): string {
return "0x" + createHash("sha256").update(Buffer.from(arrayify(data))).digest("hex")
}
export function sha512(data: BytesLike): string {
return "0x" + createHash("sha512").update(Buffer.from(arrayify(data))).digest("hex")
}
export function computeHmac(algorithm: SupportedAlgorithms, key: BytesLike, data: BytesLike): string {
if (!SupportedAlgorithms[algorithm]) {
logger.throwError("unsupported algorithm - " + algorithm, Logger.errors.UNSUPPORTED_OPERATION, {
2019-05-15 01:25:46 +03:00
operation: "computeHmac",
algorithm: algorithm
});
}
return "0x" + createHmac(algorithm, Buffer.from(arrayify(key))).update(Buffer.from(arrayify(data))).digest("hex");
}