@@ -604,7 +604,29 @@ def participant_blame(
604
604
blame_state : ParticipantBlameState ,
605
605
cblame : CoordinatorBlameMsg ,
606
606
) -> NoReturn :
607
- """Perform a participant's blame step of a ChillDKG session. TODO"""
607
+ """Perform a blame investigation (TODO) for a participant in a ChillDKG session.
608
+
609
+ This function can optionally be called when `participant_step2` raises
610
+ `UnknownFaultyParticipantOrCoordinatorError`. It narrows down the suspected
611
+ faulty parties by analyzing the blame message provided by the coordinator.
612
+
613
+ This function does not return normally. Instead, it raises one of two
614
+ exceptions.
615
+
616
+ Arguments:
617
+ blame_state: The participant's blame state as contained in
618
+ `UnknownFaultyParticipantOrCoordinatorError` raised by
619
+ `participant_step2`.
620
+ cblame: The coordinator blame message for this participant as output by
621
+ `coordinator_blame`.
622
+
623
+ Raises:
624
+ FaultyParticipantOrCoordinatorError: If another known participant or the
625
+ coordinator is faulty. See the documentation of the exception for
626
+ further details.
627
+ FaultyCoordinatorError: If the coordinator is faulty. See the
628
+ documentation of the exception for further details.
629
+ """
608
630
encpedpop .participant_blame (
609
631
blame_state = blame_state .enc_blame_state ,
610
632
cblame = cblame .enc_cblame ,
@@ -709,7 +731,15 @@ def coordinator_finalize(
709
731
710
732
711
733
def coordinator_blame (pmsgs : List [ParticipantMsg1 ]) -> List [CoordinatorBlameMsg ]:
712
- """Perform the coordinator's blame step of a ChillDKG session. TODO"""
734
+ """Generate blame messages for participants to allow blame investigation.
735
+
736
+ Arguments:
737
+ pmsgs: List of first messages received from the participants.
738
+
739
+ Returns:
740
+ List[CoordinatorBlameMsg]: A list of blame messages, each intended for a
741
+ single participant.
742
+ """
713
743
enc_cblames = encpedpop .coordinator_blame ([pmsg .enc_pmsg for pmsg in pmsgs ])
714
744
return [CoordinatorBlameMsg (enc_cblame ) for enc_cblame in enc_cblames ]
715
745
0 commit comments