PySSSS
PySSSS copied to clipboard
Python Shamir Secret Sharing Scheme
The pickRandomPolynomial function ensures that the generated polynomial has a non-zero top coefficient. This isn't necessary, and actually causes a small information leak. If an attacker with k-1 keys runs...
…and miscellaneous other fixes
:warning: `random.randint()` is used to generate pseudo numbers for non security sensitive applications, `random()` is being used in this program and it is a security risk. "Warning The pseudo-random generators...