TechCompare LogoTechCompare

Passphrase vs password: which is stronger and easier to remember?

Use passphrases for passwords you need to remember and type (master password, computer login, disk encryption). Use random passwords from a password manager for everything else. A 4-5 word passphrase is both memorable and strong enough for most threat models.

A password is a short string of mixed character types (like Kx9$mQ2!pR). A passphrase is a sequence of random dictionary words (like correct-horse-battery-staple). Passphrases are easier to remember and type, and with enough words, they're stronger than passwords. Four random words from a 2,048-word list give 2,048^4 = 1.76 × 10^13 combinations, or 44 bits of entropy. A random 8-character password drawn from 95 printable characters has about 52.6 bits, so that particular 4-word example is roughly 8.6 bits weaker, about 377 times fewer combinations.

By TechCompare · Updated

Security domain
Best Practices
Practical password security advice
Topic focus
Passphrase vs password
passphrase-vs-password

How this is calculated

The strength of a passphrase depends on the word list size and the number of words. With a 7,776-word list (the EFF long word list), four words give 7,776^4 ≈ 3.66 × 10^15 combinations (about 51 bits of entropy). Five words give 7,776^5 ≈ 2.8 × 10^19 (about 64 bits). Six words give 7,776^6 ≈ 2.2 × 10^23 (about 77 bits). A six-word passphrase is stronger than any password a human could reasonably memorize. The downside: passphrases are longer to type and some sites still enforce character-class requirements (uppercase + lowercase + number + symbol) that passphrases don't meet without modification. Add a number and a symbol as a word separator or suffix to satisfy those requirements without sacrificing memorability.

Verdict

The EFF long word list at 7,776 entries gives four words about 51 bits of entropy, five words about 64, and six words about 77, which beats any password a human could memorize. The smaller 2,048-word four-word example is only 44 bits, so word-list size matters. The downside is length and site policy: character-class rules (uppercase plus number plus symbol) reject a plain passphrase, so a separator like a number or symbol satisfies both the rule and the readability. Random manager strings still win for accounts you never type.

More Passwords scenarios

Password length guide
Password length is the single most important factor in password strength.
View details ➜
Password manager guide
A password manager is a single encrypted vault that generates, stores, and autofills strong unique passwords for every account you have.
View details ➜
NIST guidelines
NIST Special Publication 800-63B-4 is the US government's current guidance on digital identity, including password policy.
View details ➜

Frequently asked questions

Is correct-horse-battery-staple actually a strong password?
As a four-random-word pattern, yes. Four words from the EFF 7,776-word list carry about 51 bits of entropy, roughly matching a random 8-character mixed password, and six words reach about 77 bits. The XKCD math holds. What fails is using that exact comic phrase itself, because attackers include it in wordlists now.
Why do some sites reject passphrases?
Character-class rules. A site that demands uppercase plus lowercase plus a number plus a symbol won't accept four plain lowercase words, however much entropy they carry. The workaround costs nothing: use a digit or symbol as the word separator, or append a short random suffix. The passphrase stays memorable and the form validator is satisfied.
When should I use a passphrase instead of a random password?
For anything you must remember and type: your password manager's master password, computer login, and disk encryption keys. Random manager-generated strings win everywhere else, because you never have to remember them at all. The passphrase is the bridge for the few secrets that have to live in your head.