From 6ad2f052c52fb92da34adc09a4c58f2c8a154eb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikolai=20G=C3=BCtschow?= Date: Thu, 19 Oct 2023 11:21:03 +0200 Subject: [PATCH] sys/psa_crypto: remove unused variable --- sys/crypto/psa_riot_cipher/aes_128_cbc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/crypto/psa_riot_cipher/aes_128_cbc.c b/sys/crypto/psa_riot_cipher/aes_128_cbc.c index 09cf654322..0c9d0eb4b4 100644 --- a/sys/crypto/psa_riot_cipher/aes_128_cbc.c +++ b/sys/crypto/psa_riot_cipher/aes_128_cbc.c @@ -71,7 +71,6 @@ psa_status_t psa_cipher_cbc_aes_128_decrypt(const psa_key_attributes_t *attribut size_t *output_length) { DEBUG("RIOT AES 128 Cipher"); - psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED; psa_cipher_operation_t operation = psa_cipher_operation_init(); size_t required_output_buf_size = PSA_CIPHER_DECRYPT_OUTPUT_SIZE(PSA_KEY_TYPE_AES, PSA_ALG_CBC_NO_PADDING, input_length);