-
Notifications
You must be signed in to change notification settings - Fork 3k
Fix include in psa compliance tests to mbedtls config file #10041
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
Conversation
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.
Not certain why all these additional spaces added though
e66c7b5
to
434ca20
Compare
434ca20
to
24244b5
Compare
there is a tab hiding at the begging of the line |
Co-Authored-By: netanelgonen <[email protected]>
@@ -408,4 +404,4 @@ | |||
|
|||
#include "pal_crypto_config_check.h" | |||
|
|||
#endif /* _PAL_CRYPTO_CONFIG_H_ */ |
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.
what is the reason for this 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.
Bug in the code, user config should augment the mbedtls one not replace it
#else | ||
#include MBEDTLS_CONFIG_FILE | ||
#endif | ||
#include "mbedtls/config.h" |
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.
There are two changes here:
- change default header file include path
- remove an option to override this file from app sources
I'm fine with the first one, the second one is not clear to me.
What is the reason for removing the ability to use custom config file?
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.
part 2 is actually made inside part 1
mbedtls overwriting the file, we should not do this.
starting CI while we wait for reviews |
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.
Meets criteria, PSA required. Approved.
Test run: SUCCESSSummary: 13 of 13 test jobs passed |
CI has passed and this is PM approved. @avolinski @TaniaMirzin please review |
Description
Fix issue #10035
change the way pal_crypto_config.h includes mbedtls configuration.
in this way, it will take the user file if needed
Pull request type
Reviewers
@TaniaMirzin @orenc17 @avolinski
Release Notes