1 /*
2  * Copyright (c) 2022 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/sys/slist.h>
8 
9 typedef void (*bt_dh_key_cb_t)(const uint8_t *key);
10 
11 /* ecc.c declarations */
12 uint8_t const *bt_ecc_get_public_key(void);
13 uint8_t const *bt_ecc_get_internal_debug_public_key(void);
14 sys_slist_t *bt_ecc_get_pub_key_cb_slist(void);
15 bt_dh_key_cb_t *bt_ecc_get_dh_key_cb(void);
16