mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
fix ci test failure
"skip parse certificate verify" can not be changed. It is used in `Authentication: client badcert, server none` test. Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
@ -2802,7 +2802,10 @@ static void ssl_tls13_prepare_for_handshake_second_flight(
|
|||||||
if (ssl->handshake->certificate_request_sent) {
|
if (ssl->handshake->certificate_request_sent) {
|
||||||
mbedtls_ssl_handshake_set_state(ssl, MBEDTLS_SSL_CLIENT_CERTIFICATE);
|
mbedtls_ssl_handshake_set_state(ssl, MBEDTLS_SSL_CLIENT_CERTIFICATE);
|
||||||
} else {
|
} else {
|
||||||
MBEDTLS_SSL_DEBUG_MSG(2, ("Skip certificate and certificate verify parsing"));
|
MBEDTLS_SSL_DEBUG_MSG(2, ("skip parse certificate verify"));
|
||||||
|
MBEDTLS_SSL_DEBUG_MSG(
|
||||||
|
2, ("Skip certificate and certificate verify parsing"));
|
||||||
|
|
||||||
mbedtls_ssl_handshake_set_state(ssl, MBEDTLS_SSL_CLIENT_FINISHED);
|
mbedtls_ssl_handshake_set_state(ssl, MBEDTLS_SSL_CLIENT_FINISHED);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user