From 5d3a3c3ee43a54e5ad2cb2e80200cb770435ae67 Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Thu, 19 Aug 2021 18:34:41 +0100 Subject: [PATCH] Fix arguments formatting mistake Signed-off-by: Paul Elliott --- library/psa_crypto_driver_wrappers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/psa_crypto_driver_wrappers.c b/library/psa_crypto_driver_wrappers.c index 09fff0c6bd..1dd3b2db92 100644 --- a/library/psa_crypto_driver_wrappers.c +++ b/library/psa_crypto_driver_wrappers.c @@ -1509,7 +1509,7 @@ psa_status_t psa_driver_wrapper_aead_decrypt_setup( operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID; status = mbedtls_test_transparent_aead_decrypt_setup( &operation->ctx.transparent_test_driver_ctx, - attributes, + attributes, key_buffer, key_buffer_size, alg ); @@ -1523,7 +1523,7 @@ psa_status_t psa_driver_wrapper_aead_decrypt_setup( operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID; status = mbedtls_psa_aead_decrypt_setup( &operation->ctx.mbedtls_ctx, - attributes, + attributes, key_buffer, key_buffer_size, alg );