Skip to content

Commit 6d4262e

Browse files
chilldkg: Nits in comments
1 parent 268cd72 commit 6d4262e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

python/chilldkg_ref/chilldkg.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ def participant_step1(
416416
ThresholdError: If `1 <= t <= len(hostpubkeys)` does not hold.
417417
OverflowError: If `t >= 2^32` (so `t` cannot be serialized in 4 bytes).
418418
"""
419-
hostpubkey = hostpubkey_gen(hostseckey) # SecKeyError if len(hostseckey) != 32
419+
hostpubkey = hostpubkey_gen(hostseckey) # SecretKeyError if len(hostseckey) != 32
420420

421421
params_validate(params)
422422
(hostpubkeys, t) = params
@@ -433,7 +433,7 @@ def participant_step1(
433433
enckeys=hostpubkeys,
434434
idx=idx,
435435
random=random,
436-
) # SecKeyError if len(hostseckey) != 32
436+
) # SecretKeyError if len(hostseckey) != 32
437437
state1 = ParticipantState1(params, idx, enc_state)
438438
return state1, ParticipantMsg1(enc_pmsg)
439439

@@ -459,7 +459,7 @@ def participant_step2(
459459
ParticipantMsg2: The second message to be sent to the coordinator.
460460
461461
Raises:
462-
SecKeyError: If the length of `hostseckey` is not 32 bytes.
462+
SecretKeyError: If the length of `hostseckey` is not 32 bytes.
463463
FIXME
464464
FaultyParticipantOrCoordinatorError: If `cmsg1` is invalid. This can
465465
happen if another participant has sent an invalid message to the
@@ -486,13 +486,13 @@ def participant_step2(
486486
)
487487
except UnknownFaultyParticipantOrCoordinatorError as e:
488488
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.
491491
blame_state = ParticipantBlameState(e.blame_state)
492492
raise UnknownFaultyParticipantOrCoordinatorError(blame_state, e.args) from e
493493

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.
496496
eq_input += b"".join([bytes_from_int(int(share)) for share in enc_secshares])
497497
dkg_output = DKGOutput._make(enc_dkg_output)
498498
state2 = ParticipantState2(params, eq_input, dkg_output)

0 commit comments

Comments
 (0)