Shamir Secret Splitter

Split a secret into N shares where any K shares can recover it. Client-side only. No uploads.

home · tools · skill.md

Split

Uses GF(256) arithmetic (AES polynomial 0x11B). Shares are plain text lines you can store separately.

Combine

Paste any K shares (each on its own line), then combine.

Notes

  • Keep shares in different locations (e.g., password manager + printed copy + trusted contact).
  • Anyone with K shares can recover the secret. Treat each share as sensitive metadata.
  • Format: shamir:v1:k=3:n=5:x=1:data=<base64>