GT2/GT2-Android/node_modules/md5hex
Ren Ren Juan c5fd23b54f Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
..
.npmignore Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
LICENSE Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
README.md Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
index.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
package.json Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00

README.md

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'