CURLE_SSL_CACERT_BADFILE error for HTTPS URL

2020-01-10 Thread shiftag via curl-library
Hello, I'm using static libcurl and openssl for my project. When I tried to access an HTTPS URL I got the following error: CURLE_SSL_CACERT_BADFILE I think this issue came from static openssl as it works fine when I was using the one on my system. I built the static libraries that way: - openss

Re: CURLE_SSL_CACERT_BADFILE error for HTTPS URL

2020-01-11 Thread shiftag via curl-library
On 1/10/20 10:22 PM, shiftag via curl-library wrote: > Hello, > > I'm using static libcurl and openssl for my project. When I tried to > access an HTTPS URL I got the following error: CURLE_SSL_CACERT_BADFILE > > I think this issue came from static openssl as it works fine

Re: CURLE_SSL_CACERT_BADFILE error for HTTPS URL

2020-01-12 Thread shiftag via curl-library
On 1/12/20 1:32 AM, Daniel Stenberg wrote: > On Sat, 11 Jan 2020, shiftag via curl-library wrote: > >> So it appears the issue is not related to the compilation. The normal >> behavior of libcurl is checking /etc/ssl/certs >> ,so I rebuild the content >> of that dir

Re: CURLE_SSL_CACERT_BADFILE error for HTTPS URL

2020-01-12 Thread shiftag via curl-library
On 1/13/20 1:18 AM, Jeffrey Walton wrote: > On Sun, Jan 12, 2020 at 10:54 AM shiftag via curl-library > wrote: >> ... >> >> That's what I did, I built libcurl with --with-ca-bundle and >> --with-ca-path but I unfortunately did a wrong copy/paste for curl

Re: CURLE_SSL_CACERT_BADFILE error for HTTPS URL

2020-01-13 Thread shiftag via curl-library
On 1/13/20 7:28 AM, Ray Satiro via curl-library wrote: > On 1/12/2020 10:49 AM, shiftag via curl-library wrote: >> On 1/12/20 1:32 AM, Daniel Stenberg wrote: >>> On Sat, 11 Jan 2020, shiftag via curl-library wrote: >>> >>>> So it appears the issue is not

Build compilation error with DES and build without NTML

2020-05-24 Thread shiftag via curl-library
Hello, I have an issue with libcurl with DES library coming from OpenSSL. I have the following errors: curl_ntlm_core.c:147:27: error: unknown type name ‘DES_key_schedule’   147 |   DES_key_schedule DESKEYARG(ks))   |   ^~~~ curl_ntl

URL in bad format, but why ?

2020-08-10 Thread shiftag via curl-library
Hello, I built libcurl statically and everything works fine. Except for the following URL :     https://www.google.com/accessibility/?hl=en When I access this URL I have the following error :     URL using bad/illegal format or missing URL So I copy/paste that URL and I feed it with Curl bina

Re: URL in bad format, but why ?

2020-08-10 Thread shiftag via curl-library
On 8/10/20 4:17 PM, Daniel Stenberg wrote: > On Mon, 10 Aug 2020, shiftag via curl-library wrote: > >> I built libcurl statically and everything works fine. Except for the >> following URL : >> >>     https://www.google.com/accessibility/?hl=en > > My gues