:orphan: .. title:: MBEDTLS_AES_C .. option:: CONFIG_MBEDTLS_AES_C *AES - Advanced Encryption Standard* Type: ``bool`` Help ==== This setting will enable AES block cipher, including ECB - Electronic Code Book. Enabling AES will provide a sub-menu which allows for fine grained configuration of specific cipher support. Corresponds to MBEDTLS_AES_C setting in mbed TLS config file. Direct dependencies =================== (\ :option:`CC310_BACKEND ` || \ :option:`MBEDTLS_VANILLA_BACKEND `) && \ :option:`NORDIC_SECURITY_BACKEND ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Symbols selected by this symbol =============================== - \ :option:`MBEDTLS_CIPHER_AES_256_ECB_C ` if \ :option:`MBEDTLS_VANILLA_BACKEND ` && !\ :option:`NRF_CRYPTO_BACKEND_COMBINATION_0 ` Symbols that select this symbol =============================== - \ :option:`NRF_SECURITY_RNG ` Kconfig definition ================== .. highlight:: kconfig At ``nrf_security/Kconfig:162`` Included via ``/jenkins_workspace/workspace/nrfconnect-nrf_doc_v1.2-branch_2/nrfxlib/Kconfig.nrfxlib:14`` Menu path: (Top) → Nordic nrfxlib → Nordic Security → Use Nordic provided security backend .. parsed-literal:: menuconfig MBEDTLS_AES_C bool "AES - Advanced Encryption Standard" default y select \ :option:`MBEDTLS_CIPHER_AES_256_ECB_C ` if \ :option:`MBEDTLS_VANILLA_BACKEND ` && !\ :option:`NRF_CRYPTO_BACKEND_COMBINATION_0 ` depends on (\ :option:`CC310_BACKEND ` || \ :option:`MBEDTLS_VANILLA_BACKEND `) && \ :option:`NORDIC_SECURITY_BACKEND ` help This setting will enable AES block cipher, including ECB - Electronic Code Book. Enabling AES will provide a sub-menu which allows for fine grained configuration of specific cipher support. Corresponds to MBEDTLS_AES_C setting in mbed TLS config file. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*