UNPKG

md5-hex

Version:

Create a MD5 hash with hex encoding

20 lines (14 loc) 571 B
/** Create a MD5 hash with hex encoding. @param data - Prefer buffers as they're faster to hash, but strings can be useful for small things. Pass an array instead of concatenating strings and/or buffers. The output is the same, but arrays do not incur the overhead of concatenation. @example ``` import fs from 'node:fs'; import md5Hex from 'md5-hex'; const buffer = fs.readFileSync('unicorn.png'); md5Hex(buffer); //=> '1abcb33beeb811dca15f0ac3e47b88d9' ``` */ export default function md5Hex(data: Uint8Array | string | ReadonlyArray<Uint8Array | string>): string;