What Is BIP39?

BIP39 is a standard for turning random data into a list of 12 to 24 common English words, and for turning those words into a 512-bit seed that a wallet uses to create keys. The words are easier to write down and check than a long number, and a built-in checksum catches most mistakes.

BIP stands for Bitcoin Improvement Proposal. BIP39 was proposed in 2013 and is now used by most cryptocurrency wallets, not only Bitcoin ones. Last reviewed 2026-09-24.

How BIP39 works

1 · Entropy
00000000000000000000000000000000

128–256 random bits

+ SHA-256 checksum
→ 11-bit groups
2 · Mnemonic
abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about

12–24 words you write down

PBKDF2-HMAC-SHA512
2048 rounds + passphrase
3 · Seed
c55257c360c07c72029aebc1b53c05ed…

512 bits, the input to wallet key derivation

Values from official test vector #1 (passphrase “TREZOR”). Test vector
  1. Entropy. A wallet picks 128–256 random bits. Try it in the generator.
  2. Checksum. It hashes those bits with SHA-256 and appends the first few bits of the hash.
  3. Words. The bits are split into 11-bit numbers, each selecting one of 2048 words.
  4. Seed. The words, plus an optional passphrase, go through PBKDF2-HMAC-SHA512 with 2048 rounds to produce a 512-bit seed. See it in the converter.

What BIP39 solves

  • Human-friendly backups. Twelve words are easier to write, read aloud and check than 32 hex characters.
  • Error detection. A checksum makes most typos fail instead of restoring the wrong wallet.
  • Portability. Any wallet that implements BIP39 (and the same derivation paths) can restore the same funds.

What BIP39 does not do

  • It does not encrypt or hide the words. Whoever has them controls the funds.
  • It does not define how keys or addresses are made from the seed — that is BIP32, BIP44 and related standards.
  • It does not guarantee randomness. A weak random source gives a weak phrase with a perfectly valid checksum.
  • It cannot tell you whether a phrase has funds or which wallet created it.

Word counts and entropy

WordsEntropy bitsChecksum bitsPossible phrases
1212842128
1516052160
1819262192
2122472224
2425682256

The checksum

The checksum is the first ENT/32 bits of SHA-256(entropy): 4 bits for 12 words, 8 bits for 24. It lives in the last word, which is why you can’t pick the last word freely. The checksum page walks through every step with real test vectors.

The optional passphrase

BIP39 lets you add a passphrase, sometimes called the “25th word”. Every passphrase produces a different valid seed, so a typo opens a different empty wallet instead of showing an error. Try it with a test vector.

BIP39 vs BIP32 and BIP44

These standards are often mentioned together but do different jobs:

StandardJob
BIP39Random bits ↔ words; words + passphrase → seed
BIP32Seed → a tree of keys (hierarchical deterministic wallets)
BIP44, 49, 84, 86Which branch of that tree a wallet uses for each coin and address type (the “derivation path”)

Two wallets can use the same BIP39 phrase and still show different addresses if they use different derivation paths.

Safety advice

  • Let a hardware wallet or a trusted offline tool generate your phrase. Don’t invent words yourself.
  • Never type a real recovery phrase into a website, chat, email, cloud note or photo. Legitimate support will never ask for it.
  • Store backups offline; consider a metal backup for fire and water resistance.
  • If you use a passphrase, back it up separately with the same care.
  • To experiment, use test vectors or the offline tool.

Sources

Frequently asked questions

Is a seed phrase the same as a BIP39 mnemonic?

In everyday use, yes: “seed phrase”, “recovery phrase” and “mnemonic” usually mean the BIP39 word list. Strictly, the seed is the 512-bit value derived from the phrase.

Do all wallets use BIP39?

Most do, but not all. Some wallets use their own schemes (for example Electrum’s seed format, or Monero’s 25-word phrases), which are not interchangeable with BIP39.

Can two people get the same mnemonic?

With properly random 128-bit entropy, the chance is negligible — there are 2128 possible 12-word phrases.

Does BIP39 encrypt anything?

No. It encodes randomness as words and derives a seed. Anyone who has the words (and passphrase, if used) can recreate the seed.