Added the configuration option ALTCP_MBEDTLS_AUTHMODE to set the certificate verification mode.

Signed-off-by: Simon Goldschmidt <goldsimon@gmx.de>
This commit is contained in:
Giuseppe Modugno
2019-06-11 09:50:31 +02:00
committed by Simon Goldschmidt
parent edeeef0d20
commit 832490eec8
2 changed files with 7 additions and 1 deletions

View File

@@ -755,7 +755,7 @@ altcp_tls_create_config(int is_server, u8_t cert_count, u8_t pkey_count, int hav
altcp_mbedtls_free_config(conf);
return NULL;
}
mbedtls_ssl_conf_authmode(&conf->conf, MBEDTLS_SSL_VERIFY_OPTIONAL);
mbedtls_ssl_conf_authmode(&conf->conf, ALTCP_MBEDTLS_AUTHMODE);
mbedtls_ssl_conf_rng(&conf->conf, mbedtls_ctr_drbg_random, &altcp_tls_entropy_rng->ctr_drbg);
#if ALTCP_MBEDTLS_LIB_DEBUG != LWIP_DBG_OFF