mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-15 16:24:28 +08:00
d18cb97bb5
These warnings are caused by not completely freeing memory allocations at shutdown, and are not serious, but they make valgrind output cleaner.
44 lines
1.7 KiB
C
44 lines
1.7 KiB
C
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
*
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#define BEACON_TYPE_SNB 0x01
|
|
#define KEY_REFRESH 0x01
|
|
#define IV_INDEX_UPDATE 0x02
|
|
|
|
void net_key_cleanup(void);
|
|
bool net_key_confirm(uint32_t id, const uint8_t master[16]);
|
|
bool net_key_retrieve(uint32_t id, uint8_t *master);
|
|
uint32_t net_key_add(const uint8_t master[16]);
|
|
uint32_t net_key_frnd_add(uint32_t master_id, uint16_t lpn, uint16_t frnd,
|
|
uint16_t lp_cnt, uint16_t fn_cnt);
|
|
void net_key_unref(uint32_t id);
|
|
uint32_t net_key_decrypt(uint32_t iv_index, const uint8_t *pkt, size_t len,
|
|
uint8_t **plain, size_t *plain_len);
|
|
bool net_key_encrypt(uint32_t id, uint32_t iv_index, uint8_t *pkt, size_t len);
|
|
uint32_t net_key_network_id(const uint8_t network[8]);
|
|
bool net_key_snb_check(uint32_t id, uint32_t iv_index, bool kr, bool ivu,
|
|
uint64_t cmac);
|
|
bool net_key_snb_compose(uint32_t id, uint32_t iv_index, bool kr, bool ivu,
|
|
uint8_t *snb);
|
|
void net_key_beacon_seen(uint32_t id);
|
|
void net_key_beacon_enable(uint32_t id);
|
|
bool net_key_beacon_refresh(uint32_t id, uint32_t iv_index, bool kr, bool ivu);
|
|
void net_key_beacon_disable(uint32_t id);
|
|
uint32_t net_key_beacon_last_seen(uint32_t id);
|