Tools / Password Generator
Password Generator
Generate cryptographically random passwords in your browser — nothing is transmitted or stored.
How it generates
- Pick length and character sets, then press Generate.
- Each password comes from your browser's cryptographic RNG (crypto.getRandomValues) — no patterns, no dictionary words.
- Click any password to copy it. Nothing is ever transmitted or logged.
Frequently asked questions
Are these passwords random and safe?
Yes — they come from crypto.getRandomValues(), the browser's cryptographic random generator, and are never sent anywhere or logged.
What length should I use?
16+ characters for anything important. Length matters far more than symbol soup: a 20-character password with letters and digits beats an 8-character one full of symbols.
Should I reuse passwords?
Never — one password per site, kept in a password manager. The passwords generated here are perfect seeds for that.