DEV Community

Cover image for Generating MD5 hashes on Node.js
Douglas Moura
Douglas Moura

Posted on • Originally published at douglasmoura.dev

Generating MD5 hashes on Node.js

You can create hashes in Node.js without the need to install any external library. Usually, I create the following utility function in the projects I work on:

/**
 * Hashes a string using md5
 *
 * @param {string} str
 * @returns {string}
 */
export const md5 = (str) => createHash('md5').update(str).digest('hex')
Enter fullscreen mode Exit fullscreen mode

And I use it to replace the md5 library whenever I come across it.

Note that you can create hashes for any algorithm supported by the OpenSSL version on your platform. On Linux and Mac, you can see which algorithms are available with the command openssl list -digest-algorithms.

Top comments (1)

Collapse
 
mrrishimeena profile image
Rishi Kumar

Why use this instead of the md5 library (stable and well-tested)?