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
In httpi 2.0.0, httpi disables the use of client certificates when request.auth.ssl.verify_mode is set to :none. This can cause problems when a server requires a client-side certificate but the server itself uses a certificate with "problems" (ie. self-signed or expired). The client should always be able to send a certificate even if the server certificate has problems.
It appears the issue is in each of the adapters in HTTPI::Adapter in the setup_ssl_auth method. This problem is present in at least the Net::HTTP and Curb (have not tried the others yet).
The text was updated successfully, but these errors were encountered:
In httpi 2.0.0, httpi disables the use of client certificates when
request.auth.ssl.verify_mode
is set to:none
. This can cause problems when a server requires a client-side certificate but the server itself uses a certificate with "problems" (ie. self-signed or expired). The client should always be able to send a certificate even if the server certificate has problems.It appears the issue is in each of the adapters in HTTPI::Adapter in the
setup_ssl_auth
method. This problem is present in at least the Net::HTTP and Curb (have not tried the others yet).The text was updated successfully, but these errors were encountered: