Skip to content

Commit

Permalink
Include the session ID when constructing ephemeral pubkey message
Browse files Browse the repository at this point in the history
In the previous commit a filtering by session ID was implemented but I
missed adding the session ID to the ephemeralPublicKeyMessage generated
by the first phase of the protocol. Doing it now.
pdyraga committed Oct 25, 2024
1 parent 02c828c commit ec297fd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gjkr/protocol.go
Original file line number Diff line number Diff line change
@@ -38,6 +38,7 @@ func (m *ephemeralKeyPairGeneratingMember) generateEphemeralKeyPair() (

return &ephemeralPublicKeyMessage{
senderIndex: m.memberIndex,
sessionID: m.sessionID,
ephemeralPublicKeys: ephemeralKeys,
}, nil
}

0 comments on commit ec297fd

Please sign in to comment.