forked from Mbed-TLS/mbedtls
-
Notifications
You must be signed in to change notification settings - Fork 8
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
[tls13_mps] Fixes to clang 12 compilation issues, removing trailing whitespace #60
Open
oesh
wants to merge
8
commits into
hannestschofenig:tls13-prototype
Choose a base branch
from
oesh:oesh_tls13-prototype
base: tls13-prototype
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
48ec00b
[tls13_mps] Fixed compilation errors due to unreachable code
rhynolite b98b313
[tls13_mps] Fixing compilation error due to fallthrough
rhynolite b3d5664
[tls13_mps] Removed trailing whitespace in library/cipher.c
rhynolite 8f168dd
[tls13_mps] Removed trailing whitespace in library/ecp.c
rhynolite 8495dab
[tls13_mps] Removed trailing whitespace in library/ssl_tls.c
rhynolite 8d56da4
[tls13_mps] Removed trailing whitespace in library/ssl_tls13_generic.c
rhynolite f53c675
[tls13_mps] Removed trailing whitespace in include/mbedtls/ssl_ticket.h
rhynolite b4bdd75
[tls13_mps] Removed trailing whitespace in include/mbedtls/ssl.h
rhynolite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1613,6 +1613,9 @@ int mbedtls_ssl_decrypt_buf( mbedtls_ssl_context const *ssl, | |
else | ||
#endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 || \ | ||
MBEDTLS_SSL_PROTO_TLS1_2 */ | ||
#if defined(MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL) | ||
if( transform->minor_ver != MBEDTLS_SSL_MINOR_VERSION_4 ) | ||
#endif /* MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL */ | ||
{ | ||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "should never happen" ) ); | ||
return( MBEDTLS_ERR_SSL_INTERNAL_ERROR ); | ||
|
@@ -1710,6 +1713,9 @@ int mbedtls_ssl_decrypt_buf( mbedtls_ssl_context const *ssl, | |
else | ||
#endif /* MBEDTLS_SSL_PROTO_TLS1 || MBEDTLS_SSL_PROTO_TLS1_1 || \ | ||
MBEDTLS_SSL_PROTO_TLS1_2 */ | ||
#if defined(MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comment as above. |
||
if( transform->minor_ver != MBEDTLS_SSL_MINOR_VERSION_4 ) | ||
#endif /* MBEDTLS_SSL_PROTO_TLS1_3_EXPERIMENTAL */ | ||
{ | ||
MBEDTLS_SSL_DEBUG_MSG( 1, ( "should never happen" ) ); | ||
return( MBEDTLS_ERR_SSL_INTERNAL_ERROR ); | ||
|
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
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
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.
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.
@oesh The present code-path is for CBC mode encryption, which isn't supported in TLS 1.3. It is therefore an error if we get to this point if
transform->minor_ver == MBEDTLS_SSL_MINOR_VERSION_4
, and it seems that the previous version of the code was right. What was the motivation for the change?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.
How about guarding the entire CBC codepath with
#if defined( SSL3 || TLS1 || TLS1_1 || TLS1_2 ) ... #endif
? That should resolve the issue.