mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-06 01:20:36 +00:00
crypto: remove unused var
This commit is contained in:
parent
a0562c9087
commit
eedf4e5193
@ -706,7 +706,6 @@ static void btstack_crypto_handle_encryption_result(const uint8_t * data){
|
|||||||
btstack_crypto_aes128_cmac_t * btstack_crypto_cmac;
|
btstack_crypto_aes128_cmac_t * btstack_crypto_cmac;
|
||||||
btstack_crypto_ccm_t * btstack_crypto_ccm;
|
btstack_crypto_ccm_t * btstack_crypto_ccm;
|
||||||
uint8_t result[16];
|
uint8_t result[16];
|
||||||
uint16_t bytes_to_process;
|
|
||||||
|
|
||||||
btstack_crypto_t * btstack_crypto = (btstack_crypto_t*) btstack_linked_list_get_first_item(&btstack_crypto_operations);
|
btstack_crypto_t * btstack_crypto = (btstack_crypto_t*) btstack_linked_list_get_first_item(&btstack_crypto_operations);
|
||||||
if (!btstack_crypto) return;
|
if (!btstack_crypto) return;
|
||||||
@ -753,7 +752,6 @@ static void btstack_crypto_handle_encryption_result(const uint8_t * data){
|
|||||||
break;
|
break;
|
||||||
case CCM_W4_XN:
|
case CCM_W4_XN:
|
||||||
reverse_128(data, btstack_crypto_ccm->x_i);
|
reverse_128(data, btstack_crypto_ccm->x_i);
|
||||||
bytes_to_process = btstack_min(btstack_crypto_ccm->block_len, 16);
|
|
||||||
btstack_crypto_ccm_next_block(btstack_crypto_ccm, CCM_CALCULATE_SN);
|
btstack_crypto_ccm_next_block(btstack_crypto_ccm, CCM_CALCULATE_SN);
|
||||||
break;
|
break;
|
||||||
case CCM_W4_S0:
|
case CCM_W4_S0:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user