What a passphrase is, why four random words beat P@ssw0rd!, and how to make one

"correct horse battery staple" is easier to remember than "Tr0ub4dor&3" and much harder to crack โ€” the point of a 2011 cartoon that changed password advice. A passphrase is several random words; its strength comes from how they're chosen, not from symbols. This guide explains the counting and the method behind the passphrase generator; How long should a password be? covers the password side.

What a passphrase is

A passphrase is a password made of words โ€” typically four to six, chosen at random from a large list, separated by spaces or hyphens. It is long (20โ€“40 characters), memorable because words are what memory is built for, typeable, and strong for the same reason a long random string is strong: the number of possibilities an attacker must try. The catch is "at random": a phrase you thought of (a lyric, a quotation, your children's names) is in every cracking dictionary, and its strength is close to zero.

Entropy: counting the guesses

Password strength is measured in bits of entropy: logโ‚‚ of the number of equally likely possibilities. A random 8-character password from 95 printable characters has 95โธ โ‰ˆ 6.6 ร— 10ยนโต possibilities, about 52.6 bits. Four words from a 7,776-word list have 7,776โด โ‰ˆ 3.7 ร— 10ยนโต, about 51.7 bits โ€” nearly the same, and the four words are far easier to remember. Each added word adds 12.9 bits (multiplies the guesses by 7,776); each added random character adds 6.6. At a billion guesses per second (a fast offline attack on a weak hash), 52 bits takes about 70 days on average; 65 bits (five words) about 600 years; 77 bits (six) several hundred thousand years. Online logins with rate limits are far slower to attack, which is why even four words is plenty there.

Why random words work

The attacker knows the method โ€” that's the assumption cryptographers make โ€” and it doesn't help: knowing the list and the count still leaves 7,776โด phrases to try. The words must come from a true random source: dice (Diceware, 1995, five dice per word against a numbered list), or a generator using the operating system's cryptographic randomness, as the one here does. Capitalisation, digits and symbols add a little and are fine when a site demands them; they are not where the strength lives. The EFF's word lists improved on Diceware by choosing words that are common, distinct, easy to spell and free of homophones โ€” the list this generator uses.

How many words

  • Four words (~52 bits): fine for accounts with rate limiting and for anything a password manager also protects.
  • Five words (~65 bits): the sensible default for the passwords you have to remember โ€” your computer login, your password manager's master password.
  • Six or more (~78+ bits): encryption keys, disk encryption, recovery passphrases; anything an attacker could copy and attack offline for years.

The password strength checker estimates the entropy of what you have; a memorised five-word phrase usually beats it.

Where passphrases fit

The modern arrangement is: one strong passphrase you memorise for the password manager, a unique random password per site generated and stored by the manager (the password generator), two-factor codes on important accounts (How authenticator app codes work: TOTP, explained), and passkeys where sites offer them. Passphrases also suit the places managers don't reach โ€” the disk-encryption prompt at boot, a Wi-Fi network shared by voice (the Wi-Fi QR generator avoids the voice), a shared team credential. Never reuse one across sites, never write it in a note titled "password", and if a site caps length at 16 characters, that site has the problem.

Sources and further reading

The claims in this guide rest on these references, which were checked when the guide was last updated. Spotted an error? The contact page says how to report it.

  1. Passphrase โ€” Wikipedia
  2. Diceware โ€” Wikipedia

Try the tool

Frequently asked questions

Is a passphrase more secure than a password?

Four random words from a large list have about the same entropy as an 8-character random password and are far easier to remember; five or six words beat almost any password people can memorise.

How many words should a passphrase have?

Four for rate-limited logins, five for anything you must memorise (like a password manager master), six or more for encryption keys that could be attacked offline.

Can I make up my own passphrase?

Not safely โ€” phrases people think of (lyrics, quotes, names) are in cracking dictionaries. The words must be chosen at random from a list, by dice or a cryptographic generator.

Do I need symbols and numbers in a passphrase?

Not for strength; the word count does the work. Add them only when a site insists, and put the effort into an extra word instead.