KEY / SEEDSOURCE-LED COMPARISONS
Private key vs. Seed Phrase: signing and recovery
A private key creates signatures. A Seed Phrase is a backup secret from which keys can be recovered according to a specific format; it is neither a login password nor the coins themselves.
In BIP39, words together with any passphrase are converted into a binary seed. An HD Wallet can derive many keys from it using BIP32. The words, seed and individual private key are therefore not interchangeable data.
02The differences that matter
A private key is used to sign; a valid spend must also satisfy the relevant script's other conditions.
A Seed Phrase enables recovery of derived keys in a supported format. The words are not attached to a transaction or sent to the network.
An ordinary private key is a secret number. A BIP32 extended key also includes a chain code and can derive an entire branch.
BIP39 encodes randomness and a checksum as words. The checksum helps detect some errors but does not encrypt the backup.
A device PIN or file password protects local access. It does not automatically change the keys or replace their backup.
A BIP39 passphrase changes the derived seed. A different passphrase creates a different, often empty wallet rather than an “incorrect password” message.
A separately imported key may not belong to another HD Wallet's backup. Finding funds may require the correct script or descriptor.
Recovery requires the correct words, order, format and any passphrase. Derivation paths, address types and configuration may be needed to find all funds.
A leaked key threatens funds for which it enables spending conditions to be met; an extended key may also expose descendants. Do not publish it.
Leaked words can threaten many accounts; any passphrase's strength and secrecy affect the risk. Do not invent or translate the words, or send them to support or a website requesting “verification”.
Words alone may not be enough for complete recovery. You also need the original passphrase if used, and the correct wallet context. Multisig may require configuration and other signers; one key does not guarantee independent spending.
Examples use BIP39 and BIP32. Not every word backup is BIP39: Electrum, for example, uses its own system. Check recovery compatibility in the specific wallet's documentation, not merely by word count.