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.
Contents |
Mathematical definition[edit]
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[edit]
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
of size
where
is a prime number.
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[edit]
Example[edit]
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[edit]
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 two (
) numbers: 166 and 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[edit]
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.
Javascript example[edit]
var prime = 257; /* * Split number into the shares */ function split(number, available, needed) { var coef = [number, 166, 94], x, exp, c, accum, shares = []; /* * Normally, we use the line: * for(c = 1, coef[0] = number; c < available; c++) coef[c] = Math.floor(Math.random() * (prime - 1)); * where (prime - 1) is the maximum allowable value. * However, to follow this example, we hardcode the values: * coef = [number, 166, 94]; * For production, replace the hardcoded value with the random loop * * For each share that is requested to be available, run through the formula plugging the corresponding coefficient * The result is f(x), where x is the byte we are sharing (in the example, 1234) */ for(x = 1; x <= available; x++) { /* * coef = [1234, 166, 94] which is 1234x^0 + 166x^1 + 94x^2 */ for(exp = 1, accum = coef[0]; exp < needed; exp++) accum = (accum + (coef[exp] * (Math.pow(x, exp) % prime) % prime)) % prime; // Modular math /* * Store values as (1, 1494), (2, 1942), (3, 2578), (4, 3402), (5, 4414) (6, 5614) */ shares[x - 1] = [x, accum]; } return shares; } /* * Join the shares into a number */ function join(shares) { var accum, count, formula, startposition, nextposition, value, numerator, denominator; for(formula = accum = 0; formula < shares.length; formula++) { /* * Multiply the numerator across the top and denominators across the bottom to do Lagrange's interpolation * Result is x0(2), x1(4), x2(5) -> -4*-5 and (2-4=-2)(2-5=-3), etc for l0, l1, l2... */ for(count = 0, numerator = denominator = 1; count < shares.length; count++) { if(formula == count) continue; // If not the same value startposition = shares[formula][0]; value = shares[formula][1]; nextposition = shares[count][0]; numerator = (numerator * -nextposition) % prime; denominator = (denominator * (startposition - nextposition)) % prime; } accum = (prime + accum + (shares[formula][1] * numerator / denominator)) % prime; } return accum; } var sh = split(129, 6, 3), newshares = [sh[2 - 1], sh[4 - 1], sh[5 - 1]]; alert(join(newshares));
Properties[edit]
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 their importance inside the organization. For instance, the president can unlock the safe alone, whereas 3 secretaries are required together to unlock it.
See also[edit]
- Secret sharing
- Lagrange polynomial
- Homomorphic secret sharing - A simplistic decentralized voting protocol.
References[edit]
- Shamir, Adi (1979), "How to share a secret", Communications of the ACM 22 (11): 612–613, doi:10.1145/359168.359176.
- 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, II: Seminumerical Algorithms (3rd ed.), Addison-Wesley, p. 505.
External links[edit]
- A proper Javascript implementation of Shamir's secret sharing scheme with open source (MIT) license
- ssss: An open source (GPL) implementation of Shamir's Scheme with online demo
- An open source (GPL) perl implementation of Shamir's Secret Sharing
- Secret Sharp: An open source (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 : An open source (LGPL) implementation of Shamir's scheme in Java
- An open source implementation of the Shamir's Secret Sharing as open Web application, augmented by additional security features
- libgfshare: a secret sharing library in GF(2**8), opensource (MIT)
- Web implementation of Shamir's method
pieces makes
easily computable.