'node.js MD5 decryption with crypto module

I need to decrypt MD5 hashes in node.js (using crypto bultin module) Didnt tried to do anything beacuse even didnt found anything about decryption MD5, not cipher.

var hash = crypto.createHash("md5").update("example").digest("hex");
//how can i decrypt MD5 hash?


Solution 1:[1]

Simple answer: You can't. Cryptographic hash functions are one-way functions. Some people call them "one-way encryption" but hash functions like MD5 aren't encryption at all. They're cryptographic, but not all cryptography is encryption.

See more here.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Scott Arciszewski