Create strong, unpredictable passwords using your browser's cryptographic random generator. Everything happens locally — no password is ever sent to a server.
Select at least one character setThe generator draws each character from your selected sets using crypto.getRandomValues, the browser's cryptographically secure random source, with rejection sampling to avoid statistical bias. Entropy — measured in bits — estimates how hard the password is to guess: aim for 80 bits or more, which a long password with mixed character sets easily clears. Longer is almost always better than more exotic symbols.
Completely. The password is generated entirely in your browser and is never transmitted, logged, or stored by us. You can confirm this by disconnecting from the internet — the generator still works. For maximum safety, paste the result straight into your password manager.