Re: [PATCH v4] Allow use of TLS 1.3

2018-03-29 Thread Junio C Hamano
Loganaden Velvindron writes: > diff --git a/http.c b/http.c > index a5bd5d62c..f84b18551 100644 > --- a/http.c > +++ b/http.c > @@ -62,6 +62,9 @@ static struct { > { "tlsv1.1", CURL_SSLVERSION_TLSv1_1 }, > { "tlsv1.2", CURL_SSLVERSION_TLSv1_2 }, > #endif > +#if LIBCURL_VERSION_NUM >=

Re: [PATCH v4] Allow use of TLS 1.3

2018-03-29 Thread Johannes Schindelin
Hi Logan, On Thu, 29 Mar 2018, Loganaden Velvindron wrote: > Add a tlsv1.3 option to http.sslVersion in addition to the existing > tlsv1.[012] options. libcurl has supported this since 7.52.0. > > This requires OpenSSL 1.1.1 with TLS 1.3 enabled or curl built with > recent versions of NSS or Bor

[PATCH v4] Allow use of TLS 1.3

2018-03-29 Thread Loganaden Velvindron
Add a tlsv1.3 option to http.sslVersion in addition to the existing tlsv1.[012] options. libcurl has supported this since 7.52.0. This requires OpenSSL 1.1.1 with TLS 1.3 enabled or curl built with recent versions of NSS or BoringSSL as the TLS backend. Signed-off-by: Loganaden Velvindron --- D