Remove some CCM leftovers
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/include/psa/crypto_builtin_composites.h b/include/psa/crypto_builtin_composites.h
index b65922b..ff8e148 100644
--- a/include/psa/crypto_builtin_composites.h
+++ b/include/psa/crypto_builtin_composites.h
@@ -93,19 +93,10 @@
unsigned int body_started : 1;
uint8_t tag_length;
-
- /* Buffers for AD/data - only required until CCM gets proper multipart
- support. */
- uint8_t *ad_buffer;
- size_t ad_length;
-
- uint8_t *body_buffer;
- size_t body_length;
-
uint8_t *tag_buffer;
- /* buffer to store Nonce - only required until CCM and GCM get proper
- multipart support. */
+ /* Buffer to store Nonce - only required until CCM and GCM get proper
+ * multipart support.*/
uint8_t *nonce;
size_t nonce_length;
@@ -126,7 +117,7 @@
} mbedtls_psa_aead_operation_t;
-#define MBEDTLS_PSA_AEAD_OPERATION_INIT {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, {0}}
+#define MBEDTLS_PSA_AEAD_OPERATION_INIT {0, 0, 0, 0, 0, 0, 0, 0, 0, {0}}
/*
* BEYOND THIS POINT, TEST DRIVER DECLARATIONS ONLY.