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?