SSKR threshold query #129
-
Hi, The following lines of code in the bc-sskr repo would suggest that a share count greater than 1 should not have a threshold of 1 i.e. 1-of-1 IS allowed but 1-of-2 is NOT allowed. Although I understand why such a condition would exist a quick scan of the SSKR documentation shows no mention of it. So is this correct; 1-of-1 IS allowed but 1-of-2 is NOT allowed.? Have I missed this condition in the documentation? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@aido |
Beta Was this translation helpful? Give feedback.
@aido
In a 1-of-N split, every share is equivalent to the secret. This codebase allows a 1-of-1 split but disallows 1-of-N in general because it's not secure. Our Rust SSKR codebase does allow 1-of-N splits, but we don't recommend using them for the same reason: every share is the whole secret, which defeats the purpose of SSKR.
@ChristopherA