Password Generator
Generate cryptographically secure random passwords. Customise length and character types. All processing happens locally in your browser using the Web Crypto API.
About Password Security
- Passwords are generated using the Web Crypto API (
crypto.getRandomValues), which is cryptographically secure. - Nothing is sent to any server - generation happens entirely in your browser.
- Use at least 16 characters with a mix of all character types for best security.
Length beats complexity, and it is not close. Every character you add multiplies the work an attacker has to do, while swapping a letter for a symbol adds almost nothing against software that knows the substitution. What actually protects an account is that the password is long, random and used nowhere else, and the only realistic way to manage that is a password manager, because nobody remembers forty distinct random strings.
Related tools
How are you actually storing that?
Hashes, tokens and passwords are only as strong as the code around them: a cost factor left at the default, a token nobody checks the expiry on, a secret committed to the repository. We review and harden applications, and we tell you what an attacker reaches first.
Book a security review