Password entropy calculator
Entropy measures how unpredictable a password is, expressed in bits — each bit doubles the number of guesses an attacker must try. This tool estimates entropy from your password’s length and the variety of characters it uses, then shows a strength label, the character-pool size, and an estimated brute-force time to crack at both online and offline attack speeds.
How it works
The tool first works out the character pool from the types present, then applies the standard entropy formula:
pool = 26 (a–z) + 26 (A–Z) + 10 (0–9) + 33 (symbols), counting only types used
entropy = length × log2(pool) bits
guesses = 2^entropy ÷ 2 (attacker tries half the space on average)
time = guesses ÷ guesses-per-second
Strength bands: under 28 bits is very weak, 28–36 weak, 36–60 reasonable, 60–128 strong.
Example
The password Tr0ub4dour (10 chars: lower, upper, digit) draws from a pool of
26 + 26 + 10 = 62:
- Entropy: 10 × log2(62) = 10 × 5.954 = 59.5 bits (Reasonable)
Add three more characters and a symbol and the pool rises to 95, pushing entropy well past 80 bits — into Strong territory.
| Example | Pool | Length | Entropy |
|---|---|---|---|
| password | 26 | 8 | 37.6 bits |
| Passw0rd | 62 | 8 | 47.6 bits |
| P@ssw0rd!2x9 | 95 | 12 | 78.8 bits |
Your password is analysed entirely in your browser and is never uploaded.