There is no upload endpoint — your files are processed in this browser tab. Open your network tab and check. See how it stays private.
How to split a secret with Shamir
- Enter the secret. Paste the text you want to protect — a key, seed phrase, or password.
- Set shares & threshold. Choose how many shares to create and how many are required to recover.
- Distribute. Hand each share to a different person or store them separately.
- Reconstruct. Later, combine any threshold-many shares to restore the secret.
Some secrets are too important to keep in one place and too important to lose — a master key, a crypto seed phrase, a break-glass password. Shamir's scheme resolves that tension: split the secret into shares so that a threshold subset can rebuild it, but any smaller group learns nothing at all.
That lets you distribute trust — three of five executives, two of three engineers — with a mathematical guarantee rather than a policy. Store the shares apart, and losing one or two doesn't lock you out.
For protecting a file directly rather than a text secret, use AES file encrypt, and to store the resulting shares, keep them in a Password Desk vault.
Frequently asked questions
How does Shamir secret sharing work?
The secret becomes a point on a polynomial; each share is another point. Any threshold-many points define the polynomial and recover the secret, while fewer reveal nothing about it.
What threshold should I pick?
Balance safety and resilience: a 3-of-5 scheme survives losing two shares yet needs three to collude. Lower thresholds recover more easily; higher ones resist compromise better.
What happens if some shares are lost?
As long as at least the threshold number of shares survive, the secret reconstructs perfectly. Below the threshold, it's unrecoverable — which is exactly the security guarantee.
Are my secret and shares uploaded?
No. Splitting and reconstruction are computed locally in your browser, so neither the original secret nor any share is ever transmitted.
Related tools
- AES file encryptArgon2id + AES-GCM
- Password strengthzxcvbn scoring
- Password GeneratorGenerate strong random passwords and memorable diceware passphrases using your browser's cryptographic RNG. Tune length, character sets, and word count, see a live strength and entropy estimate, and copy — nothing is generated on or sent to a server.
- Hash & checksumSHA & MD5 digests