Fix mistyped buffer size variable

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/include/psa/crypto_struct.h b/include/psa/crypto_struct.h
index 90a0c20..6c5639d 100644
--- a/include/psa/crypto_struct.h
+++ b/include/psa/crypto_struct.h
@@ -183,7 +183,7 @@
     size_t ad_length;
 
     uint8_t *body_buffer;
-    uint8_t body_length;
+    size_t body_length;
 
     uint8_t *tag_buffer;