Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add HRR compliance comments and tests for TLS RFC section 4.2.8 #3362
Add HRR compliance comments and tests for TLS RFC section 4.2.8 #3362
Changes from 9 commits
707cad8
2e43c0a
df36987
ea0a1f9
5725d38
0df8df9
36cf6a7
75009a9
bb0302b
18f74e7
88dc849
386e42e
9373fc8
c1e9166
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well this is an unfortunate side effect of messages appearing twice in retry handshakes :/
You might still be able to simplify a little though:
You don't need to send the SERVER_HELLO manually.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I may be missing something with the negotiate functions, but similar to #3363 (comment), I think the last send needs to be sent manually so that the stuffer isn't wiped at the end of the negotiate call. If I use negotiate here
s2n_server_hello_recv
errors because the handshake stuffer is empty, but when calling it manually the stuffer is preserved after it writes so it works.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might consider stuffers for io instead of an io pair. Then you can read the actual output without relying on handshake.io.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! This fixed #3363 (comment). For this test, I found the
EXPECT_ERROR_WITH_ERRNO
macro which helped simplify it: 386e42e