md5hex
Thin wrapper around the crypto module that creates an MD5 hex digest of a given string or buffer
// Basic usagevar hexHash = ; // (You can also pass in a buffer)// 'afb6e4ac5196aa6cddcfbd8fe26cf65b' // Optional second argument lets you trim the lengthvar hexHash = ;// 'afb6e4' // Or you can give an options object as the second argument to add a saltvar hexHash = // Same as md5hex('MYSALT!' + 'A string you want to prefix with a salt') var hexHash = // Same as md5hex('SALT!' + 'A string you want to prefix with a salt' + 'MORESALT!') // And control the length through the options objectvar hexHash = ;// '30540f'