This project demonstrates a simple implementation of Shamir’s Secret Sharing to reconstruct a hidden constant from given shares.
It focuses on the core logic of secret reconstruction using polynomial interpolation.
- Reads secret shares from JSON test files
- Applies Shamir’s Secret Sharing logic
- Reconstructs the original constant securely
- Java
- JSON
Compile and run the Java file:
javac ShamirSecretSharing.java
java ShamirSecretSharing- Cryptography learning
- Secure data sharing concepts
- Academic and practice projects