- How is strength calculated?
- Entropy analysis — character set × length. 12 chars from 95 printable ASCII: 79 bits. 16 chars same set: 105 bits. Plus zxcvbn-style pattern detection.
- What's considered strong?
- 64+ bits resist casual brute-force. 80+ resist well-funded attackers. 128+ is the modern recommendation. 'Password1!' is ~20 bits — weak.
- Does it check breach databases?
- No — no API calls. For checking against breach lists use haveibeenpwned.com. This tool analyzes the password itself, not its history.
- What about dictionary passwords?
- Detected and flagged. Common passwords ('password', 'letmein', '123456') score near zero regardless of length. Substitutions (p@ssw0rd) are barely better.