mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
Fixed parse error in ssl_parse_certificate_request()
This commit is contained in:
@ -1180,7 +1180,7 @@ static int ssl_parse_certificate_request( ssl_context *ssl )
|
||||
return( POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_REQUEST );
|
||||
}
|
||||
|
||||
p = buf + 4;
|
||||
p = buf + 5;
|
||||
while( cert_type_len > 0 )
|
||||
{
|
||||
if( *p == SSL_CERT_TYPE_RSA_SIGN )
|
||||
|
Reference in New Issue
Block a user