A password generator implemented in JS/HTML. You can try this on github.io.
- Generates host-specific passwords from a master password.
 - No network connection is needed. Everything is calculated within the browser.
 - Secure password generation using scrypt with N=2^18. (N=2^20 took too long time)
 - Several character sets to choose from to meet the password requirements.
 - Passwords in invisible text to avoid shoulder hacking. You can still copy-paste.
 
- Still WIP. I'll change the algorithm at any time, which results in unexpected password string changes.
 
TBA
TBA
- Clarify what libraries are used.
 - Better UI than copy-paste.
 - Choose better password generation algorithm. Argon2?
 - Generate salt string automatically.