1.0.3 • Published 7 years ago
md5-nodejs v1.0.3
md5-nodejs
A node module that hashes data to MD5
Install
npm install md5-nodejsUsage
const md5 = require('md5-nodejs');
const hash = md5('data to hash');Hash Anything!
Here are some examples
Hash strings
const hash = md5('string to hash');Hash buffers
const hash = md5(Buffer.from('carmine'));Hash TypedArrays
const int16Array = new Int16Array(2);
int16Array[0] = 42;
const hash = md5(int16Array);Hash objects
const hash = md5({
name: 'carmine'
});Hash arrays
const hash = md5(['hash', 'this', 'array']);Hash primitives
const hash = md5(3.14159265359);
const hash = md5(true);