Skip to content

Commit 8dc5e64

Browse files
committed
chilldkg: add API docs for blaming functions
1 parent b3c53e5 commit 8dc5e64

File tree

2 files changed

+68
-4
lines changed

2 files changed

+68
-4
lines changed

README.md

+36-2
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,31 @@ recovery data to this participant.
927927
def participant_blame(blame_state: ParticipantBlameState, cblame: CoordinatorBlameMsg) -> NoReturn
928928
```
929929

930-
Perform a participant's blame step of a ChillDKG session. TODO
930+
Perform a blame investigation (TODO) for a participant in a ChillDKG session.
931+
932+
This function can optionally be called when `participant_step2` raises
933+
`UnknownFaultyParticipantOrCoordinatorError`. It narrows down the suspected
934+
faulty parties by analyzing the blame message provided by the coordinator.
935+
936+
This function does not return normally. Instead, it raises one of two
937+
exceptions.
938+
939+
*Arguments*:
940+
941+
- `blame_state` - The participant's blame state as contained in
942+
`UnknownFaultyParticipantOrCoordinatorError` raised by
943+
`participant_step2`.
944+
- `cblame` - The coordinator blame message for this participant as output by
945+
`coordinator_blame`.
946+
947+
948+
*Raises*:
949+
950+
- `FaultyParticipantOrCoordinatorError` - If another known participant or the
951+
coordinator is faulty. See the documentation of the exception for
952+
further details.
953+
- `FaultyCoordinatorError` - If the coordinator is faulty. See the
954+
documentation of the exception for further details.
931955

932956
#### coordinator\_step1
933957

@@ -1010,7 +1034,17 @@ other participants via a communication channel beside the coordinator.
10101034
def coordinator_blame(pmsgs: List[ParticipantMsg1]) -> List[CoordinatorBlameMsg]
10111035
```
10121036

1013-
Perform the coordinator's blame step of a ChillDKG session. TODO
1037+
Generate blame messages for participants to allow blame investigation.
1038+
1039+
*Arguments*:
1040+
1041+
- `pmsgs` - List of first messages received from the participants.
1042+
1043+
1044+
*Returns*:
1045+
1046+
- `List[CoordinatorBlameMsg]` - A list of blame messages, each intended for a
1047+
single participant.
10141048

10151049
#### recover
10161050

python/chilldkg_ref/chilldkg.py

+32-2
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,29 @@ def participant_blame(
604604
blame_state: ParticipantBlameState,
605605
cblame: CoordinatorBlameMsg,
606606
) -> 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+
"""
608630
encpedpop.participant_blame(
609631
blame_state=blame_state.enc_blame_state,
610632
cblame=cblame.enc_cblame,
@@ -709,7 +731,15 @@ def coordinator_finalize(
709731

710732

711733
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+
"""
713743
enc_cblames = encpedpop.coordinator_blame([pmsg.enc_pmsg for pmsg in pmsgs])
714744
return [CoordinatorBlameMsg(enc_cblame) for enc_cblame in enc_cblames]
715745

0 commit comments

Comments
 (0)