Hacker News new | ask | show | jobs
by thinking_monkey 1285 days ago
I looked at the page source and also the source files on Github for your project. Seem very simple and appears to do exactly what it says it will do, namely, generate a password on the client side in the browser with JS. Thanks for your effort on this.
1 comments

Appreciate it! In the process I learned that the best way to get random numbers is with window.crypto.getRandomValues() which is supposed to be cryptographically secure unlike Math.random().