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);