From d4e99ed40cd8a043daa8a62cec96ad58e3167570 Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Tue, 27 Apr 2021 16:34:31 +0100 Subject: [PATCH] Fix mistyped buffer size variable Signed-off-by: Paul Elliott --- include/psa/crypto_struct.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/psa/crypto_struct.h b/include/psa/crypto_struct.h index 90a0c2098..6c5639d1c 100644 --- a/include/psa/crypto_struct.h +++ b/include/psa/crypto_struct.h @@ -183,7 +183,7 @@ struct psa_aead_operation_s size_t ad_length; uint8_t *body_buffer; - uint8_t body_length; + size_t body_length; uint8_t *tag_buffer;