Definition
Shamir's Secret Sharing (SLIP39) combines a 1979 cryptographic breakthrough with a modern Bitcoin standard. Shamir's Secret Sharing (SSS), published by Adi Shamir, is a method for splitting a secret into multiple shares so that any chosen threshold of them reconstructs the original, while any smaller number reveals absolutely nothing about it — not a partial hint, not a reduced search space, nothing. SLIP39 is the SatoshiLabs standard that adapts SSS specifically to hierarchical-deterministic Bitcoin wallet seeds, turning the mathematics into a practical, word-list-based backup format a household can actually use.
How threshold backups work
You pick two numbers: n, the total shares created, and t, the threshold needed to recover. A "2-of-3" backup produces three shares where any two reconstruct the seed and any single share is useless to an attacker. Mathematically, SSS treats the secret as a point on a polynomial of degree t − 1; the shares are other points on that curve, and recovering the polynomial requires at least t of them. With fewer than the threshold, every possible secret remains equally consistent with the shares you hold — this is information-theoretic security, not merely computational difficulty. SLIP39 encodes each share as a list of 20 or 33 words drawn from its own wordlist, deliberately distinct from the BIP39 list so shares cannot be mistaken for an ordinary seed phrase. The standard also supports two-level group structures for more elaborate schemes, and an optional passphrase on top.
Why sovereign holders use it
A single seed phrase is a single point of failure in both directions: lose it and the funds are gone; let someone find it and they have everything. SLIP39 breaks that trade-off. A 2-of-3 setup with shares in three separate locations — home safe, trusted family member, safe-deposit box — survives the loss or destruction of any one location and the theft of any one share. No single burglary, flood, or lapse compromises the coins. It is the default backup type on recent Trezor hardware devices, which is how most users first encounter it, and it pairs naturally with cold storage where the seed is expected to sit untouched for years.
SLIP39 versus multisig
The comparison that matters: SLIP39 protects the backup of one seed, while multisig distributes live signing authority across independent keys. With SLIP39, whoever gathers the threshold of shares reconstructs the full seed in one place — a moment of concentrated risk that multisig never has, since its keys never combine. Conversely, SLIP39 is far simpler to operate: one wallet, one signing device, standard fees. Many holders use both layers for different jobs — SLIP39 for a personal hardware wallet backup, multisig for the deepest savings. For collaborative on-chain control, also compare MuSig2 (BIP327).
Practical cautions
The scheme's discipline requirements are its real cost. Record which scheme (t-of-n) you chose and where shares live — recovery instructions your heirs can follow matter as much as the shares themselves. Never photograph or type shares into a networked device; reconstruct only inside a hardware signer. And never attempt DIY Shamir splitting of a BIP39 phrase by hand — homemade splitting schemes have repeatedly proven insecure. Use the standardized SLIP39 implementation in a device that supports it, and test recovery before trusting it with real funds. The math is flawless; the operational habits around it are what actually protect your keys, the same keys whose structure is described by the BIP44 derivation path.
In Simple Terms
Shamir’s Secret Sharing (SLIP39) combines a 1979 cryptographic breakthrough with a modern Bitcoin standard. Shamir’s Secret Sharing (SSS), published by Adi Shamir, is a method…
