1# Copyright (c) 2022 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig UOSCORE 5 bool "UOSCORE library" 6 depends on ZCBOR 7 depends on ZCBOR_CANONICAL 8 depends on MBEDTLS 9 help 10 This option enables the UOSCORE library. 11 12if UOSCORE 13 14config UOSCORE_DEBUG 15 bool "Debug logs in the uoscore library" 16 17endif # UOSCORE 18 19menuconfig UEDHOC 20 bool "UEDHOC library" 21 depends on ZCBOR 22 depends on ZCBOR_CANONICAL 23 depends on MBEDTLS 24 help 25 This option enables the UEDHOC library. 26 27if UEDHOC 28 29config UEDHOC_DEBUG 30 bool "Debug logs in the uedhoc library" 31 32endif # UEDHOC 33