Strong Passphrase Generator

Build memorable, high-entropy passphrases from random words.

Ad placeholder (leaderboard)
Enjoying the tools? Go Pro for £4.99 (one-time) and remove all ads — forever, on this device. Remove ads — £4.99

A long passphrase made of random words is the modern recommendation for master passwords and any account you must remember: easy for you, hard for anyone else to guess. This generator picks words with your browser’s secure random source and shows a conservative entropy estimate so you can judge strength at a glance.

How it works

Words are drawn from a 260-word readable list using crypto.getRandomValues with rejection sampling, which discards biased draws so every word is exactly equally likely. The entropy estimate is built up additively:

  • Each word adds log2(260) ≈ 8.02 bits.
  • Adding a random number contributes log2(100) ≈ 6.6 bits.
  • Adding a symbol contributes log2 of the symbol-set size.

So entropy scales linearly with your chosen word count — more words, more bits, exponentially more guessing effort for an attacker.

Example

A 5-word passphrase such as:

brave-cedar-flint-meadow-tunic

has about 5 × 8.02 ≈ 40 bits of entropy. Bump it to six words for roughly 48 bits, or append a number/symbol for strict sites.

WordsApprox. entropy
4~32 bits
5~40 bits
6~48 bits
7~56 bits

Everything runs locally in your browser — nothing is ever uploaded.

Ad placeholder (rectangle)