Password Strength by Length Calculator
Calculate the number of possible password combinations based on length and character set size.
Enter your values and click Calculate
How It Works
The total number of possible passwords equals charset size raised to the power of the password length (charset^length). Because this number grows astronomically fast — a 20-character password from a 95-character set produces roughly 10^39 combinations — the result is displayed as a power of 10 using the formula length × log₁₀(charset). Entropy in bits is calculated as length × log₂(charset), which is the standard measure used in security research and password policy guidelines. Each additional bit of entropy doubles the number of guesses an attacker must try. A password below 28 bits is trivially crackable; 60+ bits provides solid resistance against modern brute-force attacks; and 128+ bits is considered effectively unbreakable with current computing technology.