aboutsummaryrefslogtreecommitdiff
path: root/configs/config-no-entropy.h
AgeCommit message (Collapse)AuthorFilesLines
2020-08-19Update copyright notices to use Linux Foundation guidanceBence Szépkúti1-3/+1
As a result, the copyright of contributors other than Arm is now acknowledged, and the years of publishing are no longer tracked in the source files. Also remove the now-redundant lines declaring that the files are part of MbedTLS. This commit was generated using the following script: # ======================== #!/bin/sh # Find files find '(' -path './.git' -o -path './3rdparty' ')' -prune -o -type f -print | xargs sed -bi ' # Replace copyright attribution line s/Copyright.*Arm.*/Copyright The Mbed TLS Contributors/I # Remove redundant declaration and the preceding line $!N /This file is part of Mbed TLS/Id P D ' # ======================== Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
2020-03-19Revert "config: Remove TLS and NET options"Gilles Peskine1-0/+1
This reverts commit 1c66e48670b64b2ac598576cc08df3a715f3957b. Conflicts: * include/mbedtls/check_config.h: * MBEDTLS_SSL_PROTO_SSL3: there has been an addition (of MBEDTLS_SHA512_NO_SHA384) at the place where it was removed. Re-add it after (alphabetical order). * MBEDTLS_ENABLE_WEAK_CIPHERSUITES: there has been an addition (of MBEDTLS_CTR_DRBG_USE_128_BIT_KEY) at the place where it was removed. Re-add it after (alphabetical order). * MBEDTLS_SSL_ALL_ALERT_MESSAGES: there has been an addition (of MBEDTLS_SHA512_SMALLER) at the place where it was removed. Re-add it after (alphabetical order). * include/mbedtls/config.h: * MBEDTLS_ENABLE_WEAK_CIPHERSUITES: there has been an addition (of MBEDTLS_CTR_DRBG_USE_128_BIT_KEY) at the place where it was removed. Re-add it after (alphabetical order). * MBEDTLS_SSL_ALL_ALERT_MESSAGES: there has been an addition (of MBEDTLS_SHA512_SMALLER) at the place where it was removed. Re-add it after (alphabetical order). * library/version_features.c: re-generate by running scripts/generate_features.pl. * programs/test/query_config.c: re-generate by running scripts/generate_query_config.pl. * scripts/config.pl: this file has been replaced by config.py. Port the reversed changes to config.py: * Revert removing three symbols from the list of symbols to exclude from full. * Revert removing one symbol (MBEDTLS_NET_C) from the list of symbols to exclude from baremetal. * scripts/footprint.sh: * Re-add the line to unset MBEDTLS_NET_C, but with config.py instead of config.pl. * tests/scripts/all.sh: * component_test_no_platform: re-add the line to unset MBEDTLS_NET_C, but with config.py instead of config.pl. * component_build_arm_none_eabi_gcc, component_build_arm_none_eabi_gcc_no_udbl_division, component_build_arm_none_eabi_gcc_no_64bit_multiplication, component_build_armcc: these components now use the baremetal configuration, so they do not need to turn off MBEDTLS_NET_C explicitly.
2020-03-19Revert "config: Remove X.509 options"Gilles Peskine1-0/+5
This reverts commit bb1f70121218b461a4197224d547e6bcfae4f991. * include/mbedtls/check_config.h: * MBEDTLS_X509_RSASSA_PSS_SUPPORT: there has been an addition (of MBEDTLS_SHA512_NO_SHA384) at the place where it was removed. Re-add it before MBEDTLS_SHA512_NO_SHA384 to keep it grouped with MBEDTLS_RSA_C. Conflicts: * scripts/config.pl: this file has been replaced by config.py. Port the reversed changes to config.py: * Revert removing three symbols from the list of symbols to exclude from full.
2019-07-15Use mbedtls-based path for includesJaeden Amero1-1/+1
To help the build system find the correct include files, paths starting with "mbedtls/" or "psa/" must be used. Otherwise, you can run into build failures like the following when building Mbed Crypto as a submodule. In file included from chachapoly.c:31:0: ../../include/mbedtls/chachapoly.h:43:10: fatal error: poly1305.h: No such file or directory #include "poly1305.h" ^~~~~~~~~~~~ compilation terminated. Includes for ALT implementations are not modified, as the alt headers are provided by system integrators and not Mbed TLS or Mbed Crypto.
2019-04-25config: Remove X.509 optionsJaeden Amero1-5/+0
Note that this fails check-names.sh because options that TLS and X.509 files use are no longer present in config.h.
2019-04-25config: Remove TLS and NET optionsJaeden Amero1-1/+0
Remove TLS and NET options from config files and scripts. Note that this fails check-names.sh because options that TLS and NET files use are no longer present in config.h.
2018-06-06Add a disabled CMAC define in the no-entropy configurationKrzysztof Stachowiak1-0/+1
2018-01-23Update Doxygen file blocks to remove copyright and license informationDarryl Green1-1/+4
2017-07-27Enable MBEDTLS_AES_ROM_TABLES in config-no-entropyAndres Amaya Garcia1-0/+3
Enable the MBEDTLS_AES_ROM_TABLES option in the configs/config-no-entropy.h to place AES lookup tables in ROM. This saves considerable RAM space, a resource that is very limited in small devices that use this configuration.
2016-09-27Add config macro for min bytes hw entropyAndres AG1-1/+2
2016-09-27Add new config.h that does not need entropy sourceAndres AG1-0/+84