From 441f0539a1f8cd228746309d71386f51b7595bda Mon Sep 17 00:00:00 2001 From: Christian Eggers Date: Tue, 8 Jul 2025 14:59:33 +0200 Subject: [PATCH] mesh: crypto: remove dead function declaration The implementation of mesh_aes_ecb_one() has been removed in commit dfed4839463f ("mesh: Convert crypto to use ELL wrappers"). --- mesh/crypto.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/mesh/crypto.h b/mesh/crypto.h index 55789886e..3d85785f1 100644 --- a/mesh/crypto.h +++ b/mesh/crypto.h @@ -22,8 +22,6 @@ bool mesh_crypto_aes_ccm_decrypt(const uint8_t nonce[13], const uint8_t key[16], const void *enc_msg, uint16_t enc_msg_len, void *out_msg, void *out_mic, size_t mic_size); -bool mesh_aes_ecb_one(const uint8_t key[16], - const uint8_t plaintext[16], uint8_t encrypted[16]); bool mesh_crypto_nkik(const uint8_t network_key[16], uint8_t identity_key[16]); bool mesh_crypto_nkbk(const uint8_t network_key[16], uint8_t beacon_key[16]); bool mesh_crypto_nkpk(const uint8_t network_key[16], uint8_t private_key[16]); -- 2.47.3