mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
keep undecryptable packets when deriving 0-RTT and handshake keys (#4950)
When receiving a ClientHello for a 0-RTT connection, this allows us to derive both 0-RTT and Handshake keys at the same time. The previous logic used to inadvertently discard previously undecryptable packets (e.g. reordered 0-RTT packets).
This commit is contained in:
parent
5a1a34df37
commit
48b8182339
1 changed files with 2 additions and 2 deletions
|
@ -1553,8 +1553,8 @@ func (s *connection) handleHandshakeEvents(now time.Time) error {
|
|||
s.restoreTransportParameters(ev.TransportParameters)
|
||||
close(s.earlyConnReadyChan)
|
||||
case handshake.EventReceivedReadKeys:
|
||||
// Queue all packets for decryption that have been undecryptable so far.
|
||||
s.undecryptablePacketsToProcess = s.undecryptablePackets
|
||||
// queue all previously undecryptable packets
|
||||
s.undecryptablePacketsToProcess = append(s.undecryptablePacketsToProcess, s.undecryptablePackets...)
|
||||
s.undecryptablePackets = nil
|
||||
case handshake.EventDiscard0RTTKeys:
|
||||
err = s.dropEncryptionLevel(protocol.Encryption0RTT, now)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue