PassSec logo PassSec by FluxWillow
// Technical Reference

Mastering Password Entropy

Published by FluxWillow Security · Updated: January 2026

In the modern security landscape, password "length" is no longer the only metric that matters. To truly understand whether your credentials can survive an automated attack, you need to understand password entropy — the mathematical measure of how unpredictable a password is.

The higher the entropy, the more computational work an attacker must perform. This guide covers the formula, the NIST standards that govern it, and what it means practically for your digital security.

The Entropy Formula

H = L × log₂(R)
H
Entropy (bits)
The resulting strength score
L
Length
Total characters in password
R
Range / Pool
Unique characters available

EXAMPLE

A 10-character password using only lowercase letters has R=26, giving H = 10 × log₂(26) ≈ 47.0 bits. Add one uppercase letter and R jumps to 52: H = 10 × log₂(52) ≈ 56.9 bits — nearly 2 bits gained from one change.

Why 80 Bits is the Gold Standard

Modern GPU rigs can test billions of combinations per second. For a password to be considered computationally infeasible to crack, security experts recommend a minimum of 80 bits of entropy.

Password Type Length Entropy Verdict
Numeric PIN826.6 bitsVulnerable
Lowercase only1256.4 bitsWeak
Alphanumeric + symbols1278.7 bitsStrong
Full charset (recommended)16104.9 bitsVault-Grade

NIST SP 800-63B Guidelines (2026)

The US National Institute of Standards and Technology has moved away from forcing password rotations every 90 days. Instead, NIST SP 800-63B now emphasises length and entropy over complexity alone.

Counterintuitively, a passphrase like correct-horse-battery-staple provides higher entropy and memorability than P@ss1!. FluxWillow recommends a minimum 14-character mix of all four character sets for 90+ bits.

Frequently Asked Questions

Does adding a symbol always increase entropy?
Yes — it expands R (the character pool), which increases H. However, adding a symbol predictably at the end (like "password!") is a known pattern that attackers account for. Random placement throughout the password is what matters.
Is 128-bit entropy necessary?
For personal accounts, 80-90 bits is excellent. 128-bit entropy is typically reserved for cryptographic keys, government systems, and high-value financial accounts where nation-state level attackers are a realistic threat.
How does FluxWillow calculate crack time?
Crack time uses the entropy result divided by our benchmark of 1 trillion (10¹²) guesses/second — representing a high-end consumer GPU cluster. This gives a relative worst-case estimate under brute-force conditions with no prior knowledge of the password.

Best Practices Summary

Use 12-16+ characters minimum
Mix uppercase, lowercase, numbers, and symbols
Avoid dictionary words, names, or personal dates
Never reuse passwords across sites
Use a password manager to handle high-entropy credentials
Aim for 80+ bits of entropy for personal accounts
Test Your Password Now