mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
7cd08b5824
1. Add an API to set Provisioner static oob value 2. Add an API to deinit BLE Mesh stack 3. Add an API to set Provisioner unicast address 4. Add an API to provision devices with fixed address 5. Add an API to store node composition data 6. Add an API to get node with device uuid 7. Add an API to get node with unicast address 8. Add an API to delete node with device uuid 9. Add an API to delete node with unicast address 10. Add an API for Provisioner to update local AppKey 11. Add an API for Provisioner to update local NetKey 12. Support Provisioner persistent functionality 13. Fix Provisioner entering IV Update procedure 14. Fix an issue which may cause client failing to send msg 15. Use bt_mesh.flags to indicate device role 16. Remove several useless macros 17. Callback RSSI of received mesh provisioning packets 18. Modify the Provisioner disable function 19. Change some log level from debug to info 20. Add parameters to Provisioner bind AppKey completion event 21. Fix node ignoring relay messages issue 22. Support using a specific partition for BLE Mesh 23. Fix compile warning when proxy related macros are disabled 24. Clean up BLE Mesh stack included header files 25. NULL can be input if client message needs no parameters 26. Fix compile warning when BT log is disabled 27. Initilize BLE Mesh stack local variables 28. Support using PSRAM for BLE Mesh mutex, queue and task 29. Add a menuconfig option to enable using memory from PSRAM 30. Clean up sdkconfig.defaults of BLE Mesh examples
79 lines
1.6 KiB
C
79 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 2017 Nordic Semiconductor ASA
|
|
* Copyright (c) 2016 Vinayak Kariappa Chettimada
|
|
* Copyright (c) 2015-2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#include "mesh_types.h"
|
|
#include "mesh_util.h"
|
|
#include "mesh_aes_encrypt.h"
|
|
|
|
#define MASK_TWENTY_SEVEN 0x1b
|
|
|
|
const char *bt_hex(const void *buf, size_t len)
|
|
{
|
|
static const char hex[] = "0123456789abcdef";
|
|
static char str[129];
|
|
const u8_t *b = buf;
|
|
int i;
|
|
|
|
len = MIN(len, (sizeof(str) - 1) / 2);
|
|
|
|
for (i = 0; i < len; i++) {
|
|
str[i * 2] = hex[b[i] >> 4];
|
|
str[i * 2 + 1] = hex[b[i] & 0xf];
|
|
}
|
|
|
|
str[i * 2] = '\0';
|
|
|
|
return str;
|
|
}
|
|
|
|
void mem_rcopy(u8_t *dst, u8_t const *src, u16_t len)
|
|
{
|
|
src += len;
|
|
while (len--) {
|
|
*dst++ = *--src;
|
|
}
|
|
}
|
|
|
|
unsigned int _copy(uint8_t *to, unsigned int to_len,
|
|
const uint8_t *from, unsigned int from_len)
|
|
{
|
|
if (from_len <= to_len) {
|
|
(void)memcpy(to, from, from_len);
|
|
return from_len;
|
|
} else {
|
|
return TC_CRYPTO_FAIL;
|
|
}
|
|
}
|
|
|
|
void _set(void *to, uint8_t val, unsigned int len)
|
|
{
|
|
(void)memset(to, val, len);
|
|
}
|
|
|
|
/*
|
|
* Doubles the value of a byte for values up to 127.
|
|
*/
|
|
uint8_t _double_byte(uint8_t a)
|
|
{
|
|
return ((a << 1) ^ ((a >> 7) * MASK_TWENTY_SEVEN));
|
|
}
|
|
|
|
int _compare(const uint8_t *a, const uint8_t *b, size_t size)
|
|
{
|
|
const uint8_t *tempa = a;
|
|
const uint8_t *tempb = b;
|
|
uint8_t result = 0;
|
|
|
|
for (unsigned int i = 0; i < size; i++) {
|
|
result |= tempa[i] ^ tempb[i];
|
|
}
|
|
return result;
|
|
}
|