PySSSS icon indicating copy to clipboard operation
PySSSS copied to clipboard

Python Shamir Secret Sharing Scheme

Results 3 PySSSS issues
Sort by recently updated
recently updated
newest added

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...

: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...