2016-05-24 23:15:03 +08:00
|
|
|
/* hci_ecc.h - HCI ECC emulation */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-05-24 23:15:03 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(CONFIG_BLUETOOTH_TINYCRYPT_ECC)
|
|
|
|
void bt_hci_ecc_init(void);
|
|
|
|
#else
|
|
|
|
#define bt_hci_ecc_init()
|
|
|
|
#endif /* CONFIG_BLUETOOTH_TINYCRYPT_ECC */
|