Replace hard coded buffer size with define

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/library/psa_crypto_aead.c b/library/psa_crypto_aead.c
index b694bfd..0d1cdae 100644
--- a/library/psa_crypto_aead.c
+++ b/library/psa_crypto_aead.c
@@ -843,7 +843,7 @@
     size_t finish_output_size = 0;
 
     int do_tag_check = 1;
-    uint8_t check_tag[16];
+    uint8_t check_tag[PSA_AEAD_TAG_MAX_SIZE];
 
     status = mbedtls_psa_aead_finish_checks( operation, plaintext_size,
                                              tag_length );