|
|
|
|
|
by _ihaque
1582 days ago
|
|
One would use a scheme like Shamir's secret sharing [1], not literally cutting the exact bits of the key into strips. > To unlock the secret via Shamir's secret sharing, a minimum number of shares are needed. This is called the threshold, and is used to denote the minimum number of shares needed to unlock the secret. An adversary who discovers any number of shares less than the threshold will not have any additional information about the secured secret-- this is called perfect secrecy. In this sense, SSS is a generalisation of the one-time pad (which is effectively SSS with a two-share threshold and two shares in total). [1] https://en.wikipedia.org/wiki/Shamir%27s_Secret_Sharing |
|