CONFIG_BT_USE_PSA_API was used in BT crypto/host modules to select PSA crypto API over TinyCrypt (which was the default until now). Since TinyCrypt is being deprecated and PSA crypto API is the new standard library for crypto operations, CONFIG_BT_USE_PSA_API is no more needed. Signed-off-by: Valerio Setti <vsetti@baylibre.com>
13 lines
368 B
Plaintext
13 lines
368 B
Plaintext
# Copyright (c) 2022 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config BT_CRYPTO
|
|
bool
|
|
select MBEDTLS if !BUILD_WITH_TFM
|
|
select MBEDTLS_PSA_CRYPTO_C if !BUILD_WITH_TFM
|
|
select PSA_WANT_KEY_TYPE_AES
|
|
select PSA_WANT_ALG_CMAC
|
|
select MBEDTLS_AES_ROM_TABLES if MBEDTLS_PSA_CRYPTO_C
|
|
help
|
|
This option enables the Bluetooth Cryptographic Toolbox.
|