Skip to content

Commit

Permalink
md: Overview of session
Browse files Browse the repository at this point in the history
  • Loading branch information
real-or-random committed Jul 4, 2024
1 parent 703df57 commit ad7ee6d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -511,9 +511,25 @@ If a participant deems a protocol session successful (see above), then this part

### Overview of a ChillDKG Session

TODO Write

![chilldkg diagram](images/chilldkg-sequence.png)
The following figure shows an execution of the participants and the coordinator.
Arrows indicate network messages between the participants.
For simplicity, only one participant is depicted;
all participants run the identical code and send messages at the same steps.

![The diagram shows the message flow between participant and a coordinator.
The first of two phases "Generation of host public keys" involves the participant invokes the function hostpubkey with parameter seed and sends the returned hostpubkey to the coordinator.
The second phase "Session" is initiated by the coordinator sending hostpubkeys and t to the participant.
The participant invokes participant_step1 and sends the returned pmsg1 to the coordinator.
The coordinator invokes coordinator_step and sends the returned cmsg1 to the participant.
The participant invokes participant_step2 and sends the returned pmsg2 to the coordinator.
The coordinator invokes coordinator_finalize and sends the returned cmsg2 to the participant.
The participant invokes participant_finalizes, which ends the second phase.
](images/chilldkg-sequence.png "ChillDKG")

A participant can more than one session with the same host public key,
and multiple sessions may be run concurrently.

Whenever a function call fails, the corresponding party will not continue the session.

### API Documentation

Expand Down
Binary file modified images/chilldkg-sequence.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions images/chilldkg-sequence.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ end

group Session
Coordinator->Participant: hostpubkeys, t
rnote over Participant: partcipant_step1(...)
rnote over Participant: participant_step1(...)
Participant->Coordinator: pmsg1
rnote over Coordinator: coordinator_step(...)
Coordinator->Participant: cmsg1
rnote over Participant: partcipant_step2(...)
rnote over Participant: participant_step2(...)
Participant->Coordinator: pmsg2
rnote over Coordinator: coordinator_finalize(...)
Coordinator->Participant: cmsg2
Expand Down

0 comments on commit ad7ee6d

Please sign in to comment.