Password Generator
Cryptographically secure passwords from your browser's own random source. Nothing is transmitted or logged β the password only ever exists on your screen.
FAQ
How is this safer than an online generator?
The password is created by crypto.getRandomValues() inside your browser tab β no server ever sees it. Most "online generators" can't prove that; here it's architectural.
What does the strength meter measure?
Entropy in bits: length Γ log2(character pool). 16 chars over a 92-char pool is ~104 bits β beyond any brute-force budget.
Should I include symbols?
Yes if the site allows them β but length matters more than complexity. A 20-char letters-and-digits password beats a 10-char symbol salad.