Formula & Calculator

Seed Phrase Entropy

Calculates the cryptographic security strength of a wallet recovery seed phrase based on its word count and the size of the wordlist used.

CryptoSecurityWallet Management

Seed Phrase Entropy Calculator BIP‑39 Security Metric

Entropy = Words · log₂(Wordlist Size)
Entropy = security strength (bits)  ·  Words = number of mnemonic words  ·  Wordlist Size = number of unique words in the list
⟹ Solve Entropy, Words, Wordlist Size
bits
words
words
Please fix the errors above.
Solve for:
Presets:
Entropy
Entropy: Words: Wordlist Size:
✓ Copied!
Entropy Strength Gauge
Low (< 128 bits) Standard (128–192) High (> 192)
Entropy = Words × log₂(Wordlist Size)  ·  For BIP‑39, wordlist size = 2048 → log₂(2048) = 11 bits per word.

Interpretation

Entropy (bits) = Number of Words × log₂(Wordlist Size). The security of a seed phrase in bits. Used to assess wallet security.

Entropy (bits) = Number of Words * log2(Wordlist Size)
Seed Phrase Entropy

Variables

SymbolQuantityUnit
EntropySeed phrase entropybits
Number of WordsNumber of words in the seed phrase
Wordlist SizeSize of the standard wordlist (BIP-39 = 2048)

What it means

Seed phrases (mnemonic) are used to generate private keys. The entropy is the number of possible combinations. For BIP‑39, a 12‑word phrase from a 2048‑word list gives 128 bits of entropy. This is used to evaluate the security of a wallet. Understanding entropy helps users choose secure seed lengths and to avoid insecure wallets.

Worked example

Seed Phrase Entropy – Two Detailed Examples

Real‑World
Scenario: A 12‑word seed phrase uses a wordlist of 2048 words. Entropy = 12 × log2(2048) = 12 × 11 = 132 bits. This is the security level of the phrase. With 132 bits of entropy, it is computationally infeasible to brute‑force. The user understands this is highly secure.
ParameterValue
Word Count12
Wordlist Size2048
1Entropy = 12 × log2(2048) = 12 × 11 = 132 bits
Result 132 bits ✓ Secure
Scenario: A 24‑word phrase offers 24 × 11 = 264 bits of entropy. This is significantly more secure and is the industry standard for maximum security. The user chooses 24 words for cold storage of large funds.
ParameterValue
Words24
Wordlist2048
1Entropy = 24 × 11 = 264 bits
Result 264 bits ✓ Ultra secure
Insight: Seed phrase entropy is a measure of the security strength. Higher entropy means more possible combinations, making brute‑force attacks impossible. 128 bits is considered the minimum security threshold.

Common mistakes

  • Seed phrase entropy: Number of words × log₂(wordlist size).
  • BIP‑39: Standard wordlist size is 2048 (2^11).
  • Entropy: 12 words ≈ 128 bits; 24 words ≈ 256 bits.
  • Security: Higher entropy means stronger protection.

Applications

Seed phrase entropy measures the security strength of a recovery seed phrase by multiplying the number of words by the log₂ of the wordlist size. This indicates the number of possible combinations and the difficulty of brute‑forcing. Higher entropy means stronger security. Users and wallet providers use this to assess the safety of their seed phrases. Understanding entropy is crucial for wallet security.

  • Assessing the security of a seed phrase
  • Choosing the appropriate number of words (12, 24)
  • Understanding the risk of brute‑force attacks
  • Security education for crypto users
  • Educational understanding of cryptographic entropy

Frequently Asked Questions

Q01How do I calculate the entropy (security strength) of a recovery seed phrase based on the number of words and the wordlist size?
A01

Entropy = Number of Words × log2(Wordlist Size). For a 12-word BIP-39 seed with a 2048-word list, entropy = 12 × 11 = 132 bits (though the actual entropy is 128 bits due to checksum). This indicates the brute-force resistance.

Q02Why is 12-word seed phrase considered secure enough?
A02

128 bits of entropy is considered secure against any feasible brute-force attack with current technology. It would take billions of years to crack with existing computational power.

Q03What is the difference between 12-word and 24-word seed phrases?
A03

A 24-word phrase has 256 bits of entropy, which is even more secure. However, 128 bits is already secure, so the main advantage is future-proofing against quantum computers.

Q04Is a 24-word phrase always better than a 12-word phrase?
A04

It is more secure, but it is also longer and more cumbersome to store and enter. For most users, 12 words are sufficient. The choice depends on your risk tolerance.

Q05Can I generate my own seed phrase manually?
A05

It is not recommended because humans are bad at generating randomness. Always use a wallet that generates a cryptographically secure seed phrase.

Q06How do I ensure my seed phrase is stored securely?
A06

Never store it digitally. Write it down on paper or metal and store it in a secure location (e.g., a safe). Consider splitting it into multiple parts for redundancy.

Q07What is a checksum and how does it affect entropy?
A07

The checksum is a small part of the seed phrase that validates the phrase's integrity. It reduces the effective entropy slightly (e.g., from 132 bits to 128 bits for a 12-word phrase).

Q08Is there a risk of seed phrase collisions?
A08

The probability of two people generating the same seed phrase is astronomically low due to the enormous entropy. It is not a practical concern.