1# NRF AES ECB configuration options
2
3# Copyright (c) 2020 Nordic Semiconductor ASA
4# SPDX-License-Identifier: Apache-2.0
5
6config CRYPTO_NRF_ECB
7	bool "nRF AES electronic codebook mode encryption"
8	default y
9	depends on DT_HAS_NORDIC_NRF_ECB_ENABLED
10	# Bluetooth controller uses the ECB peripheral directly
11	# (see subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/ecb.c),
12	# hence this driver cannot be enabled together with it.
13	depends on !BT_CTLR
14	help
15	  Enable nRF HAL-based AES ECB encryption driver
16