:orphan: .. title:: MBEDTLS_CFG_FILE .. option:: CONFIG_MBEDTLS_CFG_FILE *mbed TLS configuration file* Type: ``string`` Help ==== Use a specific mbedTLS configuration file. The default config file file can be tweaked with Kconfig. The default configuration is suitable to communicate with majority of HTTPS servers on the Internet, but has relatively many features enabled. To optimize resources for special TLS usage, use available Kconfig options, or select an alternative config. Direct dependencies =================== \ :option:`MBEDTLS_BUILTIN ` && \ :option:`MBEDTLS ` *(Includes any dependencies from ifs and menus.)* Default ======= - "config-tls-generic.h" Kconfig definition ================== .. highlight:: kconfig At ``modules/Kconfig.mbedtls:32`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:23`` → ``modules/Kconfig:21`` Menu path: (Top) → Modules → mbedTLS Support .. parsed-literal:: config MBEDTLS_CFG_FILE string "mbed TLS configuration file" default "config-tls-generic.h" depends on \ :option:`MBEDTLS_BUILTIN ` && \ :option:`MBEDTLS ` help Use a specific mbedTLS configuration file. The default config file file can be tweaked with Kconfig. The default configuration is suitable to communicate with majority of HTTPS servers on the Internet, but has relatively many features enabled. To optimize resources for special TLS usage, use available Kconfig options, or select an alternative config. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*