Use faster type for state index

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/include/mbedtls/sha3.h b/include/mbedtls/sha3.h
index a153892..1fbcc7a 100644
--- a/include/mbedtls/sha3.h
+++ b/include/mbedtls/sha3.h
@@ -70,7 +70,7 @@
  */
 typedef struct mbedtls_sha3_context {
     uint64_t state[25];
-    uint8_t index;
+    uint32_t index;
     uint16_t olen;
     uint16_t max_block_size;
 }