-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ssl: Make sure handshake messages are handled correctly during versio…
…n negotiation Handshake messages MAY be coalesced into a single TLSPlaintext record or fragmented across several records. There are also stricter conditions that must be met for TLS-1.3 "see RFC 8446 section 5.1. Record Layer" This means that when supporting both TLS-1.2 and TLS-1.3 as a client we need to make sure that only the server hello message is handled initially so that possible coalesced TLS-1.2 handshake messages will be handled by TLS-1.2 code when the negotiated version has been established. Closes #5961
- Loading branch information
1 parent
a47d9ce
commit 3192d81
Showing
1 changed file
with
47 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters