Select one of the symbols to view example projects that use it.
 
Outline
#define _CRYPTO_H_
#include <string.h>
#include "mesh/buf.h"
bt_mesh_sg
bt_mesh_aes_cmac(const uint8_t *, struct bt_mesh_sg *, size_t, uint8_t *);
bt_mesh_aes_cmac_one(const uint8_t *, const void *, size_t, uint8_t *)
bt_mesh_s1(const char *, uint8_t *)
bt_mesh_k1(const uint8_t *, size_t, const uint8_t *, const char *, uint8_t *);
bt_mesh_k2(const uint8_t *, const uint8_t *, size_t, uint8_t *, uint8_t *, uint8_t *);
bt_mesh_k3(const uint8_t *, uint8_t *);
bt_mesh_k4(const uint8_t *, uint8_t *);
bt_mesh_id128(const uint8_t *, const char *, uint8_t *);
bt_mesh_id_resolving_key(const uint8_t *, uint8_t *)
bt_mesh_identity_key(const uint8_t *, uint8_t *)
bt_mesh_secure_beacon_key(const uint8_t *, uint8_t *)
bt_mesh_beacon_auth(const uint8_t *, uint8_t, const uint8_t *, uint32_t, uint8_t *);
bt_mesh_secure_beacon_auth(const uint8_t *, uint8_t, const uint8_t *, uint32_t, uint8_t *);
bt_mesh_app_id(const uint8_t *, uint8_t *)
bt_mesh_session_key(const uint8_t *, const uint8_t *, uint8_t *)
bt_mesh_prov_nonce(const uint8_t *, const uint8_t *, uint8_t *)
bt_mesh_dev_key(const uint8_t *, const uint8_t *, uint8_t *)
bt_mesh_prov_salt(const uint8_t *, const uint8_t *, const uint8_t *, uint8_t *)
bt_mesh_net_obfuscate(uint8_t *, uint32_t, const uint8_t *);
bt_mesh_net_encrypt(const uint8_t *, struct net_buf_simple *, uint32_t, bool, bool);
bt_mesh_net_decrypt(const uint8_t *, struct net_buf_simple *, uint32_t, bool, bool);
bt_mesh_app_encrypt(const uint8_t *, bool, uint8_t, struct net_buf_simple *, const uint8_t *, uint16_t, uint16_t, uint32_t, uint32_t);
bt_mesh_app_decrypt(const uint8_t *, bool, uint8_t, struct net_buf_simple *, struct net_buf_simple *, const uint8_t *, uint16_t, uint16_t, uint32_t, uint32_t);
bt_mesh_fcs_calc(const uint8_t *, uint8_t);
bt_mesh_fcs_check(struct net_buf_simple *, uint8_t);
bt_mesh_virtual_addr(const uint8_t *, uint16_t *);
bt_mesh_prov_conf_salt(const uint8_t *, uint8_t *);
bt_mesh_prov_conf_key(const uint8_t *, const uint8_t *, uint8_t *);
bt_mesh_prov_conf(const uint8_t *, const uint8_t *, const uint8_t *, uint8_t *);
bt_mesh_prov_decrypt(const uint8_t *, uint8_t *, const uint8_t *, uint8_t *);
bt_mesh_prov_encrypt(const uint8_t *, uint8_t *, const uint8_t *, uint8_t *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/crypto.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * SPDX-FileContributor: 2018-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _CRYPTO_H_ #define _CRYPTO_H_ #include <string.h> #include "mesh/buf.h" #ifdef __cplusplus extern "C" { #endif struct bt_mesh_sg { const void *data; size_t len; }{ ... }; int bt_mesh_aes_cmac(const uint8_t key[16], struct bt_mesh_sg *sg, size_t sg_len, uint8_t mac[16]); static inline int bt_mesh_aes_cmac_one(const uint8_t key[16], const void *m, size_t len, uint8_t mac[16]) { struct bt_mesh_sg sg = { m, len }; return bt_mesh_aes_cmac(key, &sg, 1, mac); }{ ... } static inline bool bt_mesh_s1(const char *m, uint8_t salt[16]) { const uint8_t zero[16] = { 0 }; return bt_mesh_aes_cmac_one(zero, m, strlen(m), salt); }{ ... } int bt_mesh_k1(const uint8_t *ikm, size_t ikm_len, const uint8_t salt[16], const char *info, uint8_t okm[16]); #define bt_mesh_k1_str(ikm, ikm_len, salt_str, info, okm) \ ({ \ const uint8_t salt[16] = salt_str; \ bt_mesh_k1(ikm, ikm_len, salt, info, okm); \ }{...})... int bt_mesh_k2(const uint8_t n[16], const uint8_t *p, size_t p_len, uint8_t net_id[1], uint8_t enc_key[16], uint8_t priv_key[16]); int bt_mesh_k3(const uint8_t n[16], uint8_t out[8]); int bt_mesh_k4(const uint8_t n[16], uint8_t out[1]); int bt_mesh_id128(const uint8_t n[16], const char *s, uint8_t out[16]); static inline int bt_mesh_id_resolving_key(const uint8_t net_key[16], uint8_t resolving_key[16]) { return bt_mesh_k1_str(net_key, 16, "smbt", "smbi", resolving_key); }{ ... } static inline int bt_mesh_identity_key(const uint8_t net_key[16], uint8_t identity_key[16]) { return bt_mesh_id128(net_key, "nkik", identity_key); }{ ... } static inline int bt_mesh_secure_beacon_key(const uint8_t net_key[16], uint8_t beacon_key[16]) { return bt_mesh_id128(net_key, "nkbk", beacon_key); }{ ... } int bt_mesh_beacon_auth(const uint8_t beacon_key[16], uint8_t flags, const uint8_t net_id[8], uint32_t iv_index, uint8_t auth[8]); int bt_mesh_secure_beacon_auth(const uint8_t beacon_key[16], uint8_t flags, const uint8_t net_id[8], uint32_t iv_index, uint8_t auth[8]); static inline int bt_mesh_app_id(const uint8_t app_key[16], uint8_t app_id[1]) { return bt_mesh_k4(app_key, app_id); }{ ... } static inline int bt_mesh_session_key(const uint8_t dhkey[32], const uint8_t prov_salt[16], uint8_t session_key[16]) { return bt_mesh_k1(dhkey, 32, prov_salt, "prsk", session_key); }{ ... } static inline int bt_mesh_prov_nonce(const uint8_t dhkey[32], const uint8_t prov_salt[16], uint8_t nonce[13]) { uint8_t tmp[16]; int err; err = bt_mesh_k1(dhkey, 32, prov_salt, "prsn", tmp); if (!err) { memcpy(nonce, tmp + 3, 13); }{...} return err; }{ ... } static inline int bt_mesh_dev_key(const uint8_t dhkey[32], const uint8_t prov_salt[16], uint8_t dev_key[16]) { return bt_mesh_k1(dhkey, 32, prov_salt, "prdk", dev_key); }{ ... } static inline int bt_mesh_prov_salt(const uint8_t conf_salt[16], const uint8_t prov_rand[16], const uint8_t dev_rand[16], uint8_t prov_salt[16]) { const uint8_t prov_salt_key[16] = { 0 }; struct bt_mesh_sg sg[] = { { conf_salt, 16 }, { prov_rand, 16 }, { dev_rand, 16 }, }{...}; return bt_mesh_aes_cmac(prov_salt_key, sg, ARRAY_SIZE(sg), prov_salt); }{ ... } int bt_mesh_net_obfuscate(uint8_t *pdu, uint32_t iv_index, const uint8_t privacy_key[16]); int bt_mesh_net_encrypt(const uint8_t key[16], struct net_buf_simple *buf, uint32_t iv_index, bool proxy, bool proxy_solic); int bt_mesh_net_decrypt(const uint8_t key[16], struct net_buf_simple *buf, uint32_t iv_index, bool proxy, bool proxy_solic); int bt_mesh_app_encrypt(const uint8_t key[16], bool dev_key, uint8_t aszmic, struct net_buf_simple *buf, const uint8_t *ad, uint16_t src, uint16_t dst, uint32_t seq_num, uint32_t iv_index); int bt_mesh_app_decrypt(const uint8_t key[16], bool dev_key, uint8_t aszmic, struct net_buf_simple *buf, struct net_buf_simple *out, const uint8_t *ad, uint16_t src, uint16_t dst, uint32_t seq_num, uint32_t iv_index); uint8_t bt_mesh_fcs_calc(const uint8_t *data, uint8_t data_len); bool bt_mesh_fcs_check(struct net_buf_simple *buf, uint8_t received_fcs); int bt_mesh_virtual_addr(const uint8_t virtual_label[16], uint16_t *addr); int bt_mesh_prov_conf_salt(const uint8_t conf_inputs[145], uint8_t salt[16]); int bt_mesh_prov_conf_key(const uint8_t dhkey[32], const uint8_t conf_salt[16], uint8_t conf_key[16]); int bt_mesh_prov_conf(const uint8_t conf_key[16], const uint8_t rand[16], const uint8_t auth[16], uint8_t conf[16]); int bt_mesh_prov_decrypt(const uint8_t key[16], uint8_t nonce[13], const uint8_t data[25 + 8], uint8_t out[25]); int bt_mesh_prov_encrypt(const uint8_t key[16], uint8_t nonce[13], const uint8_t data[25], uint8_t out[33]); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _CRYPTO_H_ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.