Password Complexity Calculator
Understand how password length and character types affect the total number of possible combinations and crack resistance.
Character Types:
Complexity Results
Character Pool Size:
62 characters
lowercase letters (a-z), uppercase letters (A-Z), digits (0-9)
Total Combinations:
3.226 × 10^21
Entropy:
71 bits
Strength Level:
StrongEstimated Crack Time:
1,023 years
(Offline GPU attack: 100B guesses/sec)
Understanding the Math
The Formula
For example, an 8-character password using uppercase, lowercase, and numbers (62 total characters) has: 62^8 = 218,340,105,584,896 combinations
Why Length Matters More
Password length has an exponential effect on combinations, while adding character types has a linear effect. Compare:
- 8-char lowercase-only: 26^8 = 208 billion combinations
 - 12-char lowercase-only: 26^12 = 95 quadrillion combinations (456,976x more!)
 - 8-char with all types: 94^8 = 6 quadrillion combinations (only 29x more)
 
Adding 4 characters is more effective than adding symbols!
Entropy Bits Explained
Entropy measures password strength in bits. Each bit doubles the search space:
- 28-36 bits: Weak - Can be cracked in hours/days
 - 40-59 bits: Fair - Resistant to basic attacks
 - 60-79 bits: Strong - Resistant to advanced attacks
 - 80+ bits: Excellent - Resistant to nation-state attacks