Some minor struct optimizations.
diff --git a/library/x509_crt.c b/library/x509_crt.c
index 1c4237b..7e65f1d 100644
--- a/library/x509_crt.c
+++ b/library/x509_crt.c
@@ -2056,10 +2056,10 @@
mbedtls_md_type_t sig_md;
mbedtls_pk_type_t sig_pk;
void *sig_opts;
- uint8_t crt_hash[MBEDTLS_MD_MAX_SIZE];
size_t crt_hash_len;
mbedtls_x509_buf_raw sig;
mbedtls_x509_buf_raw issuer_raw;
+ uint8_t crt_hash[MBEDTLS_MD_MAX_SIZE];
} mbedtls_x509_crt_sig_info;
static void x509_crt_free_sig_info( mbedtls_x509_crt_sig_info *info )