密码生成器
在线生成强密码,自定义长度、字符类型。浏览器端随机生成,不上传服务器。
Password Generator — Strong Random Passwords Online
工具介绍
Weak passwords are the #1 cause of data breaches. This tool generates cryptographically strong passwords using the browser's crypto.getRandomValues() — not Math.random(). Customize length (4–128) and character sets (uppercase, lowercase, digits, symbols). 100% local; nothing is uploaded.
怎么使用
- Drag the slider to set length (16–32 is recommended)
- Check which character types to include
- Click "Generate"; the result auto-copies to your clipboard
常见用例
- Creating a strong password for a new account
- Bulk-generating temporary passwords for team members
- Initial setup of DB / SSH / root credentials
- Generating API keys or shared secrets (pair with UUID generator)
常见问题
Q: Truly random?
A: Yes — uses crypto.getRandomValues() (CSPRNG), not Math.random().
Q: How is strength measured?
A: Length × charset entropy. 16 chars from all 95 printable = ~95 bits = 10²⁰ years to brute-force.
Q: Can passwords repeat?
A: Statistically impossible. 32 chars from full charset = 2²⁰⁰+ possibilities.
小贴士
Best practice: unique password per account, stored in a manager (Bitwarden, 1Password).
Never email, chat, or write passwords on sticky notes.
Enable 2FA — defense in depth even if a password leaks.