UNPKG

@ocap/util

Version:

utils shared across multiple forge js libs, works in both node.js and browser

7 lines (5 loc) 154 B
import crypto from "node:crypto"; //#region src/md5.ts const md5 = (x) => crypto.createHash("md5").update(x).digest("hex"); //#endregion export { md5 };