In: Computer Science
Describe (t,n) Shamir secret sharing scheme
Shamir secret (t, n) sharing scheme:
It is a cryptographic procedure to share a secret message by dividing it into parts. The reconstruction of the secret that shared is not possible without a minimum number of shares. And that share number is known as the threshold (t) of the sharing schema.
For example if the shared secret is a key to be shared between the employees in a company, then the secret. Then the number “n” is the number of pieces in which the secret has divided. Now the recreation of the secret is possible only if at east “t” parts are available to a person, that “t” is known as the threshold of the algorithm. That is even if some parts are missing then also the secret can be generated if still there are “t” parts are available.
n: Number of parts in which the secret that to be shared is divided into.
t: Number of minimum parts among “n” is required to reconstruct the divided secret.
The procedure used in Shamir secret (t, n) sharing scheme is provided below:
Note: Please comment if any doubts