-
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
Backport 2.x: Remove config-psa-crypto.h #4456
Backport 2.x: Remove config-psa-crypto.h #4456
Conversation
Is it OK to remove this file in a stable branch? What was it used for, is it possible that some users relied on it? |
@mpg We've done it before: #1280, ARMmbed/mbed-crypto#71. We did announce it in the changelog, so I'll add a changelog entry. |
This configuration file was useful in the early days of PSA crypto development. It stopped becoming relevant when MBEDTLS_PSA_CRYPTO_C entered the default configuration. Remove it: better late than never. Signed-off-by: Gilles Peskine <[email protected]>
Signed-off-by: Gilles Peskine <[email protected]>
484e64f
to
947360e
Compare
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.
LGTM
Just holding out waiting for conflicts to be resolved in the main PR, as I think it's slightly cleaner to merge them both at the same time. |
This configuration file was useful in the early days of PSA crypto development. It stopped becoming relevant when
MBEDTLS_PSA_CRYPTO_C
entered the default configuration. Remove it: better late than never.Backport of #4455