Skip to content

Commit

Permalink
Update webpage
Browse files Browse the repository at this point in the history
Signed-off-by: lovesh <lovesh.bond@gmail.com>
  • Loading branch information
lovesh committed May 9, 2024
1 parent a4d0717 commit 8dae1be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion secret_sharing_and_dkg/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Secret sharing and distributed key generation

Implements Secret Sharing (SS), Verifiable Secret Sharing (VSS), Distributed Verifiable Secret Sharing (DVSS) and Distributed
Key Generation (DKG) algorithms. DVSS and DKG do not require a trusted dealer.
Key Generation (DKG) algorithms. DVSS and DKG do not require a trusted dealer. Also implements a distributed discrete log check.


1. [Shamir secret sharing (Requires a trusted dealer)](./src/shamir_ss.rs)
1. [Pedersen Verifiable Secret Sharing](./src/pedersen_vss.rs)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ properly created, `UC_i` needs to prove using the similar protocol as above but
This method of creating share as Pedersen commitment is not implemented yet.


**CREDIT**: Using pairings for maliciously secure protocol was suggested by [Massimiliano Sala](https://webapps.unitn.it/du/en/Persona/PER0000604/Didattica)
**CREDIT**: Using pairings for maliciously secure protocol was suggested by [Massimiliano Sala](https://www.science.unitn.it/~sala/)
2 changes: 1 addition & 1 deletion secret_sharing_and_dkg/src/distributed_dlog_check/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
//! This method of creating share as Pedersen commitment is not implemented yet.
//!
//!
//! **CREDIT**: Using pairings for maliciously secure protocol was suggested by [Massimiliano Sala](https://webapps.unitn.it/du/en/Persona/PER0000604/Didattica)
//! **CREDIT**: Using pairings for maliciously secure protocol was suggested by [Massimiliano Sala](https://www.science.unitn.it/~sala/)
//!

pub mod maliciously_secure;
Expand Down

0 comments on commit 8dae1be

Please sign in to comment.