Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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