Imagine a company vault that requires three of five executives to open it — no single person can act alone, and the vault does not even exist in the form where any two executives could be bribed into opening it.
Threshold signatures achieve exactly this for cryptographic keys. In a threshold scheme, participants each hold a share of a private key. Any of them can collaborate to produce a valid signature on a message. Fewer than learn nothing that helps them sign — the missing shares cannot be computed from the ones they have.
The state of the art for Schnorr-based threshold signing is FROST — Flexible Round-Optimized Schnorr Threshold — published by Chelsea Komlo and Ian Goldberg in 2020 and standardized as RFC 9591 in 2024. FROST achieves the threshold property in just two communication rounds while producing a signature indistinguishable from one made by a single signer.
Related primitives you might also know: secret sharing distributes a secret so that of shares reconstruct it, and public-key cryptography underpins the hardness assumption that makes all of this secure.
Comments
Loading comments...