@@ -416,7 +416,7 @@ def participant_step1(
416
416
ThresholdError: If `1 <= t <= len(hostpubkeys)` does not hold.
417
417
OverflowError: If `t >= 2^32` (so `t` cannot be serialized in 4 bytes).
418
418
"""
419
- hostpubkey = hostpubkey_gen (hostseckey ) # SecKeyError if len(hostseckey) != 32
419
+ hostpubkey = hostpubkey_gen (hostseckey ) # SecretKeyError if len(hostseckey) != 32
420
420
421
421
params_validate (params )
422
422
(hostpubkeys , t ) = params
@@ -433,7 +433,7 @@ def participant_step1(
433
433
enckeys = hostpubkeys ,
434
434
idx = idx ,
435
435
random = random ,
436
- ) # SecKeyError if len(hostseckey) != 32
436
+ ) # SecretKeyError if len(hostseckey) != 32
437
437
state1 = ParticipantState1 (params , idx , enc_state )
438
438
return state1 , ParticipantMsg1 (enc_pmsg )
439
439
@@ -459,7 +459,7 @@ def participant_step2(
459
459
ParticipantMsg2: The second message to be sent to the coordinator.
460
460
461
461
Raises:
462
- SecKeyError : If the length of `hostseckey` is not 32 bytes.
462
+ SecretKeyError : If the length of `hostseckey` is not 32 bytes.
463
463
FIXME
464
464
FaultyParticipantOrCoordinatorError: If `cmsg1` is invalid. This can
465
465
happen if another participant has sent an invalid message to the
@@ -486,13 +486,13 @@ def participant_step2(
486
486
)
487
487
except UnknownFaultyParticipantOrCoordinatorError as e :
488
488
assert isinstance (e .blame_state , encpedpop .ParticipantBlameState )
489
- # Translate encpedpop.UnknownFaultyParticipantOrCoordinatorError into our own
490
- # chilldkg.UnknownFaultyParticipantOrCoordinatorError.
489
+ # Translate encpedpop.UnknownFaultyParticipantOrCoordinatorError into
490
+ # our own chilldkg.UnknownFaultyParticipantOrCoordinatorError.
491
491
blame_state = ParticipantBlameState (e .blame_state )
492
492
raise UnknownFaultyParticipantOrCoordinatorError (blame_state , e .args ) from e
493
493
494
- # Include the enc_shares in eq_input to ensure that participants agree on all
495
- # shares, which in turn ensures that they have the right recovery data.
494
+ # Include the enc_shares in eq_input to ensure that participants agree on
495
+ # all shares, which in turn ensures that they have the right recovery data.
496
496
eq_input += b"" .join ([bytes_from_int (int (share )) for share in enc_secshares ])
497
497
dkg_output = DKGOutput ._make (enc_dkg_output )
498
498
state2 = ParticipantState2 (params , eq_input , dkg_output )
0 commit comments