Move functions defined in the Cryptographic toolbox of the Bluetooth specification inside their own files in the following folder: `zephyr/subsys/bluetooth/bt_crypto`. The functions were previously implemented in `zephyr/subsys/bluetooth/host/smp.c`. The cryptographic toolbox functions can now be accessed from outside of the host. In addition to that, tests for each cryptographic toolbox functions have been added. Signed-off-by: Théo Battrel <theo.battrel@nordicsemi.no>
9 lines
159 B
Plaintext
9 lines
159 B
Plaintext
# Copyright (c) 2022 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config BT_CRYPTO
|
|
default y
|
|
|
|
# Include Zephyr's Kconfig.
|
|
source "Kconfig"
|