ethers.js/src.ts/hash/message.ts

14 lines
442 B
TypeScript
Raw Normal View History

2022-09-16 05:31:00 +03:00
import { keccak256 } from "../crypto/index.js";
2022-09-05 23:14:43 +03:00
import { MessagePrefix } from "../constants/index.js";
import { concat, toUtf8Bytes } from "../utils/index.js";
export function hashMessage(message: Uint8Array | string): string {
if (typeof(message) === "string") { message = toUtf8Bytes(message); }
return keccak256(concat([
toUtf8Bytes(MessagePrefix),
toUtf8Bytes(String(message.length)),
message
]));
}