2019-05-15 01:25:46 +03:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
import { createHash, createHmac } from 'crypto';
|
|
|
|
|
|
|
|
import { arrayify, BytesLike } from '@ethersproject/bytes';
|
|
|
|
|
2019-08-03 08:05:39 +03:00
|
|
|
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]) {
|
2019-08-03 08:05:39 +03:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|