Secret sharing using the Chinese remainder theorem
Secret sharing consists of recovering a secret S from a set of shares, each containing partial information about the secret. The (CRT) states that for a given system of simultaneous congruence equations, the solution is unique in some , with under some appropriate conditions on the congruences. can thus use the CRT to produce the shares presented in the congruence equations and the secret could be recovered by solving the system of congruences to get the unique solution, which will be the secret to recover.
Contents
Secret sharing schemes: several types
There are several types of schemes. The most basic types are the so-called schemes, where only the of the set of shares matters. In other words, given a secret S, and n shares, any set of t shares is a set with the smallest from which the secret can be recovered, in the sense that any set of t-1 shares is not enough to give S. This is known as a . We call such schemes (t,n) schemes, or t-out-of-n scheme.
schemes differ from one another by the method of generating the shares, starting from a certain secret. The first ones are , which is based on in order to find S from a given set of shares, and ‘s geometric secret sharing scheme, which uses geometric methods to recover the secret S. schemes based on the CRT are due to Mignotte and Asmuth-Bloom, they use special sequences of integers along with the CRT.
Chinese remainder theorem
Let , and . The system of congruences
has solutions in if and only if for all , where denotes the (GCD) of and . Furthermore, under these conditions, the system has a unique solution in where , which denotes the (LCM) of .
Secret sharing using the CRT
Since the provides us with a method to uniquely determine a number S modulo k-many integers , given that , then, the idea is to construct a scheme that will determine the secret S given any k shares (in this case, the remainder of S modulo each of the numbers ), but will not reveal the secret given less than k of such shares.
Ultimately, we choose n integers such that S is smaller than the product of any choice of k of these integers, but at the same time is greater than any choice of k-1 of them. Then the shares are defined by for . In this manner, thanks to the CRT, we can uniquely determine S from any set of k or more shares, but not from less than k. This provides the so-called .
This condition on S can also be regarded as
Since S is smaller than the smallest product of k of the integers, it will be smaller than the product of any k of them. Also, being greater than the product of the greatest integers, it will be greater than the product of any of them.
There are two that utilize essentially this idea, Mignotte’s and Asmuth-Bloom’s Schemes, which are explained below.
Mignotte’s threshold secret sharing scheme
As said before, Mignotte’s scheme uses, along with the CRT, special sequences of integers called the (k,n)-Mignotte sequences which consist of n integers, , such that the product of the smallest k of them is greater than the product of the biggest ones. This condition is crucial because the scheme is built on choosing the secret as an integer between the two products, and this condition ensures that at least k shares are needed to fully recover the secret, no matter how they are chosen.
Formally, let be integers. A (k,n)-Mignotte sequence is a strictly increasing sequence of positive integers , with for all , such that . We call this range the authorized range. We build a (k,n)- scheme as follows: We choose the secret S as a random integer in the authorized range. We compute, for every , the reduction modulo of S that we call , these are the shares. Now, for any k different shares , we consider the system of congruences:
By the , since are , the system has a unique solution modulo . By the construction of our shares, this solution is nothing but the secret S to recover.
Asmuth-Bloom’s threshold secret sharing scheme
This scheme also uses special sequences of integers. Let be integers. We consider a sequence of positive integers such that . For this given sequence, we choose the secret S as a random integer in the set .
We then pick a random integer such that . We compute the reduction modulo of , for all , these are the shares . Now, for any k different shares , we consider the system of congruences:
By the , since are , the system has a unique solution modulo . By the construction of our shares, the secret S is the reduction modulo of .
It is important to notice that the Mignotte (k,n)- scheme is not perfect in the sense that a set of less than k shares contains some information about the secret. The Asmuth-Bloom scheme is perfect: is independent of the secret and
Therefore can be any integer modulo
This product of moduli is the largest of any of the n choose possible products, therefore any subset of equivalences can be any integer modulo its product, and no information from is leaked.
Example
The following is an example on the Asmuth-Bloom’s Scheme. For practical purposes we choose small values for all parameters. We choose k=3 and n=4. Our integers being and . They satisfy the Asmuth-Bloom required sequence because .
Say our secret is 2. Pick , satisfying the required condition for the Asmuth-Bloom scheme. Then and we compute the shares for each of the integers 11, 13, 17 and 19. They are respectively 1, 12, 2 and 3. We consider one possible set of 3 shares: among the 4 possible sets of 3 shares we take the set {1,12,2} and show that it recovers the secret S=2. Consider the following system of congruences:
To solve the system, let . From a constructive algorithm for solving such a system, we know that a solution to the system is , where each is found as follows:
By , since , there exist positive integers and , that can be found using the , such that . Set .
From the identities , we get that , and the unique solution modulo is 155. Finally, .