Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lovesh/secret-sharing-schemes
Various secret sharing schemes
https://github.com/lovesh/secret-sharing-schemes
pedersen-secret-sharing secret-sharing shamir-secret-sharing verifiable-secret-sharing
Last synced: about 1 month ago
JSON representation
Various secret sharing schemes
- Host: GitHub
- URL: https://github.com/lovesh/secret-sharing-schemes
- Owner: lovesh
- License: apache-2.0
- Created: 2019-11-25T19:32:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-01T11:45:32.000Z (almost 5 years ago)
- Last Synced: 2024-11-08T06:43:20.158Z (about 2 months ago)
- Topics: pedersen-secret-sharing, secret-sharing, shamir-secret-sharing, verifiable-secret-sharing
- Language: Rust
- Homepage:
- Size: 11.7 KB
- Stars: 3
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Secret sharing
The implemented schemes are prototypes and should not be used in production.
They are used to assist in demonstrating threshold signatures (in other repos).1. [Shamir secret sharing (Requires trusted third party)](src/shamir_secret_sharing.rs)
1. [Pedersen verifiable secret sharing (Requires trusted third party)](src/pedersen_vss.rs)
1. [Pedersen decentralized verifiable secret sharing (Does not require a trusted party)](src/pedersen_dvss.rs)# Pending:
1. More tests
2. Model Pedersen DVSS as state machine