1 /* rpa.h - Bluetooth Resolvable Private Addresses (RPA) generation and 2 * resolution 3 */ 4 5 /* 6 * Copyright (c) 2017 Nordic Semiconductor ASA 7 * Copyright (c) 2015-2016 Intel Corporation 8 * 9 * SPDX-License-Identifier: Apache-2.0 10 */ 11 12 #include <bluetooth/bluetooth.h> 13 #include <bluetooth/hci.h> 14 15 bool bt_rpa_irk_matches(const u8_t irk[16], const bt_addr_t *addr); 16 int bt_rpa_create(const u8_t irk[16], bt_addr_t *rpa); 17