1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library()
4
5zephyr_library_sources(bt_crypto.c)
6
7if(CONFIG_BT_CRYPTO_LOG_LEVEL_DBG)
8    message(WARNING "CONFIG_BT_CRYPTO_LOG_LEVEL_DBG is enabled.
9    Private security keys such as the Long Term Key will be printed out.
10    Do not use in production."
11    )
12endif()
13