Shamir's secret sharing
Shamir's Secret Sharing is an algorithm in cryptography. It is a form of secret sharing, where a secret is divided into parts, giving each participant its own unique part, where some of the parts or all of them are needed in order to reconstruct the secret.
Counting on all participants to combine together the secret might be impractical, and therefore sometimes the threshold scheme is used where any of the parts are sufficient to reconstruct the original secret.
Mathematical definition
Formally, our goal is to divide some data (e.g., the safe combination) into pieces in such a way that:
- Knowledge of any or more pieces makes easily computable.
- Knowledge of any or fewer pieces leaves completely undetermined (in the sense that all its possible values are equally likely).
This scheme is called threshold scheme. If then all participants are required to reconstruct the secret.
Shamir's secret-sharing scheme
The essential idea of Adi Shamir's threshold scheme is that 2 points are sufficient to define a line, 3 points are sufficient to define a parabola, 4 points to define a cubic curve and so forth. That is, it takes points to define a polynomial of degree .
Suppose we want to use a threshold scheme to share our secret , without loss of generality assumed to be an element in a finite field .
Choose at random coefficients in , and let . Build the polynomial . Let us construct any points out of it, for instance set to retrieve . Every participant is given a point (a pair of input to the polynomial and output). Given any subset of of these pairs, we can find the coefficients of the polynomial using interpolation and the secret is the constant term .
Usage
Example
The following example illustrates the basic idea. Note, however, that calculations in the example are done using integer arithmetic rather than using finite field arithmetic. Therefore the example below does not provide perfect secrecy, and is not a true example of Shamir's scheme.
Preparation
Suppose that our secret is 1234 .
We wish to divide the secret into 6 parts , where any subset of 3 parts is sufficient to reconstruct the secret. At random we obtain 2 numbers: 166, 94.
Our polynomial to produce secret shares (points) is therefore:
We construct 6 points from the polynomial:
We give each participant a different single point (both and ).
Reconstruction
In order to reconstruct the secret any 3 points will be enough.
Let us consider .
We will compute Lagrange basis polynomials:
Therefore
Recall that the secret is the free coefficient, which means that , and we are done.
Properties
Some of the useful properties of Shamir's threshold scheme are:
- Secure: Information theoretic security.
- Minimal: The size of each piece does not exceed the size of the original data.
- Extensible: When is kept fixed, pieces can be dynamically added or deleted without affecting the other pieces.
- Dynamic: Security can be easily enhanced without changing the secret, but by changing the polynomial occasionally (keeping the same free term) and constructing new shares to the participants.
- Flexible: In organizations where hierarchy is important, we can supply each participant different number of pieces according to his importance inside the organization. For instance, the president can unlock the safe alone, whereas 3 secretaries are required together to unlock it.
See also
- Secret sharing
- Lagrange polynomial
- Homomorphic secret sharing - A simplistic decentralized voting protocol.
References
- Shamir, Adi (1979), "How to share a secret", Communications of the ACM, 22 (11): 612–613, doi:10.1145/359168.359176
{{citation}}
: Unknown parameter|yeat=
ignored (help).
- Liu, C. L. (1968), Introduction to Combinatorial Mathematics, New York: McGraw-Hill.
- Dawson, E.; Donovan, D. (1994), "The breadth of Shamir's secret-sharing scheme", Computers & Security, 13: 69–78, doi:10.1016/0167-4048(94)90097-3.
- Knuth, D. E. (1997), The Art of Computer Programming, vol. II: Seminumerical Algorithms (3rd ed.), Addison-Wesley, p. 505.
External links
- ssss: A free (GPL) implementation of Shamir's Scheme with online demo
- A perl implementation of Shamir's Secret Sharing
- Secret Sharp: A free (GPL) implementation of Shamir's Scheme for windows
- Christophe David's web based implementation of Shamir's scheme 'How to share a Secret'
- Shamir's Secret Sharing in Java : A free (LGPL) implementation of Shamir's scheme in Java