K

KeyAudit

wallet-types

What is a seed phrase / mnemonic?

A seed phrase (mnemonic) is a human-readable encoding of a master private key, typically 12–24 words drawn from the BIP-39 wordlist. Each word represents 11 bits of entropy, with the final word containing a checksum derived via SHA-256. This structure provides guaranteed cryptographic strength—2048 bits of entropy for 24-word phrases—and eliminates the guessable patterns common in brain wallets.

Brain wallets rely on user-chosen passphrases, which often have low entropy (<30 bits) and can be brute-forced via dictionary attacks. In contrast, BIP-39 mnemonics enforce a fixed wordlist and built-in checksum, making them resistant to casual collision and guaranteeing uniform entropy distribution. Key generation from a seed phrase follows a deterministic path (BIP-32 or BIP-44) to derive hierarchical keypairs (ECDSA for BTC/ETH, Ed25519 for SOL).

← All FAQs