-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Update certs for cases where support for DES cipher is not available #93096
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
base: main
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,30 @@ | |||
-----BEGIN ENCRYPTED PRIVATE KEY----- |
Check failure
Code scanning / SonarCloud
Cryptographic private keys should not be disclosed High test
@@ -0,0 +1,30 @@ | |||
-----BEGIN ENCRYPTED PRIVATE KEY----- |
Check failure
Code scanning / SonarCloud
Cryptographic private keys should not be disclosed High test
@@ -0,0 +1,30 @@ | |||
-----BEGIN ENCRYPTED PRIVATE KEY----- |
Check failure
Code scanning / SonarCloud
Cryptographic private keys should not be disclosed High test
snippets/wifi-enterprise/snippet.yml
Outdated
boards: | ||
/.*/nrf.*/cpuapp/: | ||
append: | ||
EXTRA_CONF_FILE: wifi-enterprise_nrf.conf |
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.
overlay-nrf-wifi.conf
?
With NRF security, higher heap requirement is seen for operating with RSA-3072 based certificates. Add a NRF SoC specific conf in snippets to handle this. Signed-off-by: Ravi Dondaputi <ravi.dondaputi@nordicsemi.no>
Add AES-only cipher certificates. Useful for systems which have only AES support and DES is not enabled. Signed-off-by: Ravi Dondaputi <ravi.dondaputi@nordicsemi.no>
Add config options required for storing certificates in protected storage, and to free up space of ROM to accommodate the additional features that are enabled for TFM. Signed-off-by: Ravi Dondaputi <ravi.dondaputi@nordicsemi.no>
|
@@ -0,0 +1,8 @@ | |||
# For TLS and X.509 processing MbedTLS needs large heap size and using separate heap | |||
# for MbedTLS gives us more control over the heap size. | |||
CONFIG_MBEDTLS_HEAP_SIZE=75000 |
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.
CONFIG_MBEDTLS_ENABLE_HEAP
isn't needed?
No description provided.