mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 16:57:25 +00:00
Refactor the BR/EDR SSP feature out into it's own source file. Signed-off-by: Joakim Andersson <joakim.andersson@nordicsemi.no>
14 lines
418 B
C
14 lines
418 B
C
/*
|
|
* Copyright (c) 2020 Nordic Semiconductor ASA
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
int bt_ssp_start_security(struct bt_conn *conn);
|
|
|
|
int bt_ssp_auth_passkey_entry(struct bt_conn *conn, unsigned int passkey);
|
|
int bt_ssp_auth_passkey_confirm(struct bt_conn *conn);
|
|
int bt_ssp_auth_cancel(struct bt_conn *conn);
|
|
int bt_ssp_auth_pairing_confirm(struct bt_conn *conn);
|