You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When user sets CURLOPT_SSLCERT but leaves CURLOPT_SSLKEY unset assume
the path passed in CURLOPT_SSLCERT holds the ssl key which is what
we do in openssl implementation.
Closedcurl#14007
I did this
I tried running
curl --cert <path> <url_requiring_client_cert>
which works with openssl backend but fails with wolfssl.The reason being that openssl backend will assume key_file is the same as cert_file (code here) which wolfssl makes no such assumption (code here).
I expected the following
I expect wolfssl backend to assume key_file is the same as cert_file, which means both ssl backend show behave the same.
curl/libcurl version
curl 8.8.0
operating system
All
The text was updated successfully, but these errors were encountered: