Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

md5hex

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

md5hex

Thin wrapper around the crypto module that creates an MD5 hex digest of a given string or buffer

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
500K
decreased by-14.98%
Maintainers
1
Weekly downloads
 
Created
Source

md5hex

Thin wrapper around the crypto module that creates an MD5 hex digest of a given string or buffer

// Basic usage
var hexHash = md5hex('A string you want to hash'); // (You can also pass in a buffer)
// 'afb6e4ac5196aa6cddcfbd8fe26cf65b'


// Optional second argument lets you trim the length
var hexHash = md5hex('A string you want to hash', 6);
// 'afb6e4'

// Or you can give an options object as the second argument to add a salt
var hexHash = md5hex('A string you want to prefix with a salt', {salt: 'MYSALT!'})
// Same as md5hex('MYSALT!' + 'A string you want to prefix with a salt')

var hexHash = md5hex('A string you want to prefix with a salt', {saltPrefix: 'SALT!', saltSuffix: 'MORESALT!'})
// Same as md5hex('SALT!' + 'A string you want to prefix with a salt' + 'MORESALT!')

// And control the length through the options object
var hexHash = md5hex('A string you want a short hash of', {length: 6});
// '30540f'



Keywords

FAQs

Package last updated on 02 Jun 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc