ESPHome 2026.8.0-dev
Loading...
Searching...
No Matches
ble_aes_ccm.cpp
Go to the documentation of this file.
1#include "ble_aes_ccm.h"
2
3#include <algorithm>
4#include <cstring>
5
7
8namespace {
9
10// AES-128 forward cipher only — CCM uses the block cipher in the encrypt
11// direction for both the CTR keystream and the CBC-MAC.
12const uint8_t SBOX[256] = {
13 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, 0x76, //
14 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0, 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0, //
15 0xb7, 0xfd, 0x93, 0x26, 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15, //
16 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2, 0xeb, 0x27, 0xb2, 0x75, //
17 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0, 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84, //
18 0x53, 0xd1, 0x00, 0xed, 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf, //
19 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f, 0x50, 0x3c, 0x9f, 0xa8, //
20 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5, 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2, //
21 0xcd, 0x0c, 0x13, 0xec, 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73, //
22 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14, 0xde, 0x5e, 0x0b, 0xdb, //
23 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c, 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79, //
24 0xe7, 0xc8, 0x37, 0x6d, 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08, //
25 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f, 0x4b, 0xbd, 0x8b, 0x8a, //
26 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e, 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e, //
27 0xe1, 0xf8, 0x98, 0x11, 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf, //
28 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f, 0xb0, 0x54, 0xbb, 0x16, //
29};
30
31const uint8_t RCON[11] = {0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36};
32
33inline uint8_t xtime(uint8_t x) { return static_cast<uint8_t>((x << 1) ^ ((x & 0x80) ? 0x1b : 0x00)); }
34
35// AES-128 forward cipher with on-the-fly key schedule.
36class Aes128 {
37 public:
38 explicit Aes128(const uint8_t key[16]) {
39 memcpy(this->rk_, key, 16);
40 for (size_t i = 16; i < 176; i += 4) {
41 uint8_t t[4] = {this->rk_[i - 4], this->rk_[i - 3], this->rk_[i - 2], this->rk_[i - 1]};
42 if (i % 16 == 0) {
43 const uint8_t tmp = t[0];
44 t[0] = static_cast<uint8_t>(SBOX[t[1]] ^ RCON[i / 16]);
45 t[1] = SBOX[t[2]];
46 t[2] = SBOX[t[3]];
47 t[3] = SBOX[tmp];
48 }
49 for (size_t j = 0; j < 4; j++)
50 this->rk_[i + j] = static_cast<uint8_t>(this->rk_[i - 16 + j] ^ t[j]);
51 }
52 }
53
54 void encrypt(const uint8_t in[16], uint8_t out[16]) const {
55 uint8_t s[16];
56 memcpy(s, in, 16);
57 for (size_t i = 0; i < 16; i++)
58 s[i] ^= this->rk_[i];
59
60 for (size_t round = 1; round < 10; round++) {
61 for (uint8_t &b : s)
62 b = SBOX[b];
63 shift_rows(s);
64 for (size_t c = 0; c < 4; c++) {
65 uint8_t *col = s + c * 4;
66 const uint8_t a0 = col[0], a1 = col[1], a2 = col[2], a3 = col[3];
67 const uint8_t h = static_cast<uint8_t>(a0 ^ a1 ^ a2 ^ a3);
68 col[0] ^= static_cast<uint8_t>(h ^ xtime(static_cast<uint8_t>(a0 ^ a1)));
69 col[1] ^= static_cast<uint8_t>(h ^ xtime(static_cast<uint8_t>(a1 ^ a2)));
70 col[2] ^= static_cast<uint8_t>(h ^ xtime(static_cast<uint8_t>(a2 ^ a3)));
71 col[3] ^= static_cast<uint8_t>(h ^ xtime(static_cast<uint8_t>(a3 ^ a0)));
72 }
73 for (size_t i = 0; i < 16; i++)
74 s[i] ^= this->rk_[round * 16 + i];
75 }
76
77 for (uint8_t &b : s)
78 b = SBOX[b];
79 shift_rows(s);
80 for (size_t i = 0; i < 16; i++)
81 s[i] ^= this->rk_[160 + i];
82 memcpy(out, s, 16);
83 }
84
85 protected:
86 static void shift_rows(uint8_t s[16]) {
87 uint8_t t = s[1];
88 s[1] = s[5];
89 s[5] = s[9];
90 s[9] = s[13];
91 s[13] = t;
92 t = s[2];
93 s[2] = s[10];
94 s[10] = t;
95 t = s[6];
96 s[6] = s[14];
97 s[14] = t;
98 t = s[3];
99 s[3] = s[15];
100 s[15] = s[11];
101 s[11] = s[7];
102 s[7] = t;
103 }
104
105 uint8_t rk_[176];
106};
107
108} // namespace
109
110void aes128_encrypt_block(const uint8_t key[16], const uint8_t in[16], uint8_t out[16]) {
111 Aes128 aes(key);
112 aes.encrypt(in, out);
113}
114
115bool aes_ccm_auth_decrypt(const uint8_t key[16], const uint8_t *nonce, size_t nonce_len, const uint8_t *aad,
116 size_t aad_len, const uint8_t *ciphertext, size_t ct_len, uint8_t *plaintext,
117 const uint8_t *tag, size_t tag_len) {
118 // CCM length field width L and tag width M (RFC 3610 §2.2). For a 13-byte
119 // nonce L = 2; BTHome uses M = 4.
120 if (nonce_len < 7 || nonce_len > 13 || tag_len < 4 || tag_len > 16)
121 return false;
122 const size_t l = 15 - nonce_len;
123 const size_t m = tag_len;
124
125 const Aes128 aes(key);
126
127 // Build CTR block A_i = [L-1] | nonce | counter(L bytes, big-endian).
128 uint8_t a[16];
129 auto build_ctr = [&](uint32_t counter) {
130 a[0] = static_cast<uint8_t>(l - 1);
131 memcpy(a + 1, nonce, nonce_len);
132 memset(a + 1 + nonce_len, 0, l);
133 for (size_t i = 0; i < l; i++)
134 a[15 - i] = static_cast<uint8_t>((counter >> (8 * i)) & 0xff);
135 };
136
137 // S_0 = E(A_0); its first m bytes mask the transmitted tag.
138 uint8_t s0[16];
139 build_ctr(0);
140 aes.encrypt(a, s0);
141
142 // CTR-decrypt ciphertext into plaintext using S_1, S_2, ...
143 uint8_t ks[16];
144 for (size_t off = 0; off < ct_len; off += 16) {
145 build_ctr(static_cast<uint32_t>(off / 16) + 1);
146 aes.encrypt(a, ks);
147 const size_t n = std::min(static_cast<size_t>(16), ct_len - off);
148 for (size_t i = 0; i < n; i++)
149 plaintext[off + i] = static_cast<uint8_t>(ciphertext[off + i] ^ ks[i]);
150 }
151
152 // CBC-MAC over B_0 | (formatted AAD) | plaintext.
153 uint8_t x[16];
154 uint8_t b0[16];
155 const uint8_t flags = static_cast<uint8_t>((aad_len > 0 ? 0x40 : 0x00) | (((m - 2) / 2) << 3) | (l - 1));
156 b0[0] = flags;
157 memcpy(b0 + 1, nonce, nonce_len);
158 memset(b0 + 1 + nonce_len, 0, l);
159 for (size_t i = 0; i < l; i++)
160 b0[15 - i] = static_cast<uint8_t>((ct_len >> (8 * i)) & 0xff);
161 aes.encrypt(b0, x); // X_1 = E(B_0)
162
163 if (aad_len > 0) {
164 // Only the < 2^16-2^8 encoding is needed for BLE-sized AAD.
165 uint8_t blk[16] = {0};
166 blk[0] = static_cast<uint8_t>((aad_len >> 8) & 0xff);
167 blk[1] = static_cast<uint8_t>(aad_len & 0xff);
168 size_t ai = 0;
169 size_t pos = 2;
170 while (pos < 16 && ai < aad_len)
171 blk[pos++] = aad[ai++];
172 for (size_t i = 0; i < 16; i++)
173 x[i] ^= blk[i];
174 aes.encrypt(x, x);
175 while (ai < aad_len) {
176 memset(blk, 0, 16);
177 const size_t n = std::min(static_cast<size_t>(16), aad_len - ai);
178 memcpy(blk, aad + ai, n);
179 ai += n;
180 for (size_t i = 0; i < 16; i++)
181 x[i] ^= blk[i];
182 aes.encrypt(x, x);
183 }
184 }
185
186 for (size_t off = 0; off < ct_len; off += 16) {
187 uint8_t blk[16] = {0};
188 const size_t n = std::min(static_cast<size_t>(16), ct_len - off);
189 memcpy(blk, plaintext + off, n);
190 for (size_t i = 0; i < 16; i++)
191 x[i] ^= blk[i];
192 aes.encrypt(x, x);
193 }
194
195 // Expected tag U = T XOR S_0[0..m). Constant-time compare with the received tag.
196 uint8_t diff = 0;
197 for (size_t i = 0; i < m; i++)
198 diff |= static_cast<uint8_t>((x[i] ^ s0[i]) ^ tag[i]);
199 return diff == 0;
200}
201
202} // namespace esphome::ble_device_base
uint8_t l
Definition bl0906.h:0
uint8_t m
Definition bl0906.h:1
uint8_t h
Definition bl0906.h:2
uint8_t rk_[176]
uint16_t flags
bool aes_ccm_auth_decrypt(const uint8_t key[16], const uint8_t *nonce, size_t nonce_len, const uint8_t *aad, size_t aad_len, const uint8_t *ciphertext, size_t ct_len, uint8_t *plaintext, const uint8_t *tag, size_t tag_len)
void aes128_encrypt_block(const uint8_t key[16], const uint8_t in[16], uint8_t out[16])
AES-128 single-block encrypt (the same software cipher CCM uses).
const char * tag
Definition log.h:74
size_t size_t pos
Definition helpers.h:1052
static void uint32_t
uint16_t x
Definition tt21100.cpp:5