Shamir Secter Sharing in standard version (paper version) works pretty good with Lagrange Interpolation to generate more shares. Problems arise when you generate more pairs (xi, yi) and you try to reconstruct the secret from shares which are kind of distant to each other. Algorithm works but value of secret you get is somehow different, which is unacceptable for production usage. I think it is related to the Runge Phenomenon.
So what are the options? Are there any better interpolations to be used? Maybe there is some kind of way of generating (xi,yi) from secret that could give stable results by Lagrange?
I switched currently to gaussian as the most stable computationally.
See also this: https://crypto.stackexchange.com/questions/14608/does-runge-phenomenon-affect-shamirs-secret-sharing-scheme?rq=1
– Morrolan Dec 17 '21 at 12:21But it's important to understand that working in a finite field is absolutely required for security. Shamir's secret sharing over the reals provides very little in terms of security.
– Morrolan Dec 17 '21 at 14:47