DEV Community

Discussion on: Random Password Generator using JavaScript 🚀

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

STOP using pseudo-random number generator (PRNG) for password generation (no matter what programming languages).

At least use window.crypto in browser, or crypto module in Node.js.