New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

md5-nodejs

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

md5-nodejs

Utility to hash data to MD5 and/or convert MD5 hashes to UUID

latest
Source
npmnpm
Version
1.0.3
Version published
Weekly downloads
35
-41.67%
Maintainers
1
Weekly downloads
 
Created
Source

md5-nodejs

A node module that hashes data to MD5

Install

npm install md5-nodejs

Usage

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);

License

MIT

Keywords

md5

FAQs

Package last updated on 19 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts