-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Don't self-test ECJPAKE ALT implementations against known entropy #4007
Merged
yanesca
merged 1 commit into
Mbed-TLS:development
from
stevew817:feature/alt_implementation_is_not_deterministic
Jan 25, 2021
Merged
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -820,6 +820,8 @@ static const unsigned char ecjpake_test_password[] = { | |
0x65, 0x73, 0x74 | ||
}; | ||
|
||
#if !defined(MBEDTLS_ECJPAKE_ALT) | ||
|
||
chris-jones-arm marked this conversation as resolved.
Show resolved
Hide resolved
|
||
static const unsigned char ecjpake_test_x1[] = { | ||
0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, | ||
0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, | ||
|
@@ -964,6 +966,8 @@ static int ecjpake_test_load( mbedtls_ecjpake_context *ctx, | |
return( ret ); | ||
} | ||
|
||
#endif /* ! MBEDTLS_ECJPAKE_ALT */ | ||
|
||
/* For tests we don't need a secure RNG; | ||
* use the LGC from Numerical Recipes for simplicity */ | ||
static int ecjpake_lgc( void *p, unsigned char *out, size_t len ) | ||
|
@@ -1059,6 +1063,12 @@ int mbedtls_ecjpake_self_test( int verbose ) | |
if( verbose != 0 ) | ||
mbedtls_printf( "passed\n" ); | ||
|
||
#if !defined(MBEDTLS_ECJPAKE_ALT) | ||
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. Please add a comment explaining why those tests are not relevant in the case of an alternative implementation of ECJPAKE. 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. Done. |
||
/* 'reference handshake' tests can only be run against implementations | ||
* for which we have 100% control over how the random ephemeral keys | ||
* are generated. This is only the case for the internal mbed TLS | ||
* implementation, so these tests are skipped in case the internal | ||
* implementation is swapped out for an alternative one. */ | ||
if( verbose != 0 ) | ||
mbedtls_printf( " ECJPAKE test #2 (reference handshake): " ); | ||
|
||
|
@@ -1107,6 +1117,7 @@ int mbedtls_ecjpake_self_test( int verbose ) | |
|
||
if( verbose != 0 ) | ||
mbedtls_printf( "passed\n" ); | ||
#endif /* ! MBEDTLS_ECJPAKE_ALT */ | ||
|
||
cleanup: | ||
mbedtls_ecjpake_free( &cli ); | ||
chris-jones-arm marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
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.
Commit message: the commit message is too long and not rendered properly by GitHub.
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.
fixed