Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Epic: Demo for Trusted Dealer key share generation #238

Closed
6 tasks done
Assignees
Labels

Comments

@mpguerra
Copy link
Contributor

mpguerra commented Feb 10, 2023

Motivation

We want to simulate a simple execution of FROST to show potential FROST implementers how to use the FROST library.

Scope

Build a simple CLI that runs trusted dealer key generation and writes out the necessary data to the terminal. Demo can take in a number of participants and will generate a number of unique identifiers for the number of participants, it will then generate all of the various data required in each round

Specification

On startup, the Trusted Dealer demo will prompt for:

  • A group secret to be split into shares (s)
  • The number of shares to generate (MAX_PARTICIPANTS)
  • The threshold number of participants for the secret sharing scheme (MIN_PARTICIPANTS)

The dealer CLI will then use that data to generate:

  • Each participant’s secret share: s_1 - s_MAX_PARTICIPANTS - by running trusted_dealer_keygen
  • The group public key: PK (which is the same as vss_commitment[0]) - by running trusted_dealer_keygen
  • A commitment to the secret: vss_commitment - by running trusted_dealer_keygen
  • Each participant’s public key: PK_1 - PK_MAX_PARTICIPANTS - by running derive_group_info

This above data will be output by the Trusted Dealer demo to the terminal (or a file or wherever it makes sense) to be input into the Participant CLI (#239) during the Signature Generation demo.

Trusted Dealer Key Generation

@mpguerra mpguerra changed the title Demo for key shares generation Demo for Trusted Dealer key share generation Feb 22, 2023
@mpguerra
Copy link
Contributor Author

Hey team! Please add your planning poker estimate with Zenhub @conradoplg @dconnolly @natalieesk

@natalieesk
Copy link
Contributor

I didn't mean to close this issue. There's more to be done.

@natalieesk natalieesk reopened this May 24, 2023
@mpguerra mpguerra added the Epic label May 25, 2023
@mpguerra mpguerra changed the title Demo for Trusted Dealer key share generation Epic: Demo for Trusted Dealer key share generation May 25, 2023
@mpguerra
Copy link
Contributor Author

I think this is big enough for an epic by itself

@mpguerra
Copy link
Contributor Author

All done! 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Archived in project
2 participants