d Regards,
SWAMY J S
-Original Message-
From: Daniel Stenberg
Sent: Tuesday, March 19, 2019 2:27 PM
To: Swamy J-S via curl-library
Cc: Swamy J-S
Subject: Re: cURL with openSSL 1.1.1 version
CAUTION: This email originated from outside of the organization. Do not click
links or open attachments unle
Hi,
Currently am working with curl 7.58 and openssl 1.0.2 in ubuntu 18.04.
As openssl 1.0.2 support will end this year, I want to upgrade my openssl to
1.1.1 branch.
Right now my code uses curl library with libcurl4 and gnuTLS as SSL backend. Am
using many curl options such as CURLOPT_SSL_VERI
Hi,
I have a code which uses CURLOPT_SSL_CTX_FUNCTION, and CURLOPT_SSL_CTX_DATA.
But these curl options are supported only by opneSSL, wolfSSL/CyaSSL, and
mbedTLS backends. Earlier I installed libcurl4-gnutls-dev in Ubuntu16.04
OS(Ubuntu 16 comes with openssl 1.1.0 default).
I want to build my
Is there any other libcurl option available for gnuTLS which has same
functionality as CURLOPT_SSL_CTX_FUNCTION ?
Thanks and Regards,
SWAMY J S
-Original Message-
From: Daniel Stenberg [mailto:dan...@haxx.se]
Sent: Thursday, October 25, 2018 12:13 PM
To: Swamy J-S via curl-library
Cc
to:dan...@haxx.se]
Sent: Thursday, October 25, 2018 12:13 PM
To: Swamy J-S via curl-library
Cc: Swamy J-S
Subject: Re: Alternate for CURLOPT_SSL_CTX_FUNCTION in gnuTLS
CAUTION: This email originated from outside of the organization. Do not click
links or open attachments unless you recognize the send
I am using CURLOPT_SSL_CTX_FUNCTION in my program and gnuTLS as backend SSL in
Linux.
As this CURL option is not supported in gnuTLS am getting CURLE_NOT_BUILT_IN
error.
Is there any alternate option available for "CURLOPT_SSL_CTX_FUNCTION" in
gnuTLS ? If not available how to proceed ??
Thank
curl_easy_setopt(Config->hHandle->curl, CURLOPT_SSL_CTX_FUNCTION, NULL))
is returning CURLE_NOT_BUILT_IN error in linux, where in Windows (Visual
Studio) its working fine.
I built libcurl in linux with following commands:
sudo apt-get install openssl libssl-dev
sudo apt-get install libcu