:orphan: .. title:: MBEDTLS_HAVE_ASM .. option:: CONFIG_MBEDTLS_HAVE_ASM *Enable use of assembly code* Type: ``bool`` Help ==== Enable use of assembly code in mbedTLS. This improves the performances of asymmetric cryptography, however this might have an impact on the code size. Direct dependencies =================== \ :option:`MBEDTLS_BUILTIN ` && \ :option:`MBEDTLS_CFG_FILE ` = "config-tls-generic.h" && \ :option:`MBEDTLS ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if !\ :option:`ARM ` Kconfig definition ================== .. highlight:: kconfig At ``modules/Kconfig.tls-generic:312`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:23`` → ``modules/Kconfig:21`` → ``modules/Kconfig.mbedtls:44`` Menu path: (Top) → Modules → mbedTLS Support → TLS configuration .. parsed-literal:: config MBEDTLS_HAVE_ASM bool "Enable use of assembly code" default y if !\ :option:`ARM ` depends on \ :option:`MBEDTLS_BUILTIN ` && \ :option:`MBEDTLS_CFG_FILE ` = "config-tls-generic.h" && \ :option:`MBEDTLS ` help Enable use of assembly code in mbedTLS. This improves the performances of asymmetric cryptography, however this might have an impact on the code size. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*