You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Michael Winter 555e2c196e initial commit 5 years ago
..
browser.js initial commit 5 years ago
index.js initial commit 5 years ago
license initial commit 5 years ago
package.json initial commit 5 years ago
readme.md initial commit 5 years ago

readme.md

md5-hex Build Status

Create a MD5 hash with hex encoding

Please don't use MD5 hashes for anything sensitive!

Checkout hasha if you need something more flexible.

Install

$ npm install --save md5-hex

Usage

const fs = require('fs');
const md5Hex = require('md5-hex');
const buffer = fs.readFileSync('unicorn.png');

md5Hex(buffer);
//=> '1abcb33beeb811dca15f0ac3e47b88d9'

API

md5Hex(input)

input

Type: buffer string array[string|buffer]

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.

License

MIT © Sindre Sorhus