mirror of
https://github.com/curl/curl.git
synced 2026-08-24 20:03:52 +03:00
parent
95e94c64fb
commit
9b879160df
17 changed files with 1049 additions and 14 deletions
6
docs/FAQ
6
docs/FAQ
|
|
@ -447,9 +447,9 @@ FAQ
|
|||
|
||||
curl can be built to use one of the following SSL alternatives: OpenSSL,
|
||||
libressl, BoringSSL, GnuTLS, wolfSSL, NSS, mbedTLS, MesaLink, Secure
|
||||
Transport (native iOS/OS X), Schannel (native Windows) or GSKit (native IBM
|
||||
i). They all have their pros and cons, and we try to maintain a comparison
|
||||
of them here: https://curl.haxx.se/docs/ssl-compared.html
|
||||
Transport (native iOS/OS X), Schannel (native Windows), GSKit (native IBM
|
||||
i), or BearSSL. They all have their pros and cons, and we try to maintain a
|
||||
comparison of them here: https://curl.haxx.se/docs/ssl-compared.html
|
||||
|
||||
2.3 Where can I find a copy of LIBEAY32.DLL?
|
||||
|
||||
|
|
|
|||
|
|
@ -120,6 +120,7 @@ libressl.
|
|||
- schannel: `--without-ssl --with-schannel`
|
||||
- secure transport: `--without-ssl --with-secure-transport`
|
||||
- MesaLink: `--without-ssl --with-mesalink`
|
||||
- BearSSL: `--without-ssl --with-bearssl`
|
||||
|
||||
# Windows
|
||||
|
||||
|
|
|
|||
|
|
@ -75,6 +75,11 @@ not have the announcement clause that collides with GPL.
|
|||
(May be used for SSL/TLS support) As an OpenSSL fork, it has the same
|
||||
license as that.
|
||||
|
||||
## BearSSL
|
||||
|
||||
(May be used for SSL/TLS support) Uses an MIT license that is very liberal
|
||||
and imposes no restrictions on any other library or part you may link with.
|
||||
|
||||
## c-ares
|
||||
|
||||
(Used for asynchronous name resolves) Uses an MIT license that is very
|
||||
|
|
|
|||
|
|
@ -43,7 +43,8 @@ typedef enum {
|
|||
CURLSSLBACKEND_DARWINSSL = 9,
|
||||
CURLSSLBACKEND_AXTLS = 10, /* deprecated */
|
||||
CURLSSLBACKEND_MBEDTLS = 11,
|
||||
CURLSSLBACKEND_MESALINK = 12
|
||||
CURLSSLBACKEND_MESALINK = 12,
|
||||
CURLSSLBACKEND_BEARSSL = 13
|
||||
} curl_sslbackend;
|
||||
|
||||
.B "CURLsslset curl_global_sslset(curl_sslbackend " id,
|
||||
|
|
|
|||
|
|
@ -720,6 +720,7 @@ CURLSSH_AUTH_NONE 7.16.1
|
|||
CURLSSH_AUTH_PASSWORD 7.16.1
|
||||
CURLSSH_AUTH_PUBLICKEY 7.16.1
|
||||
CURLSSLBACKEND_AXTLS 7.38.0 7.61.0
|
||||
CURLSSLBACKEND_BEARSSL 7.68.0
|
||||
CURLSSLBACKEND_BORINGSSL 7.49.0
|
||||
CURLSSLBACKEND_CYASSL 7.34.0
|
||||
CURLSSLBACKEND_DARWINSSL 7.34.0 7.64.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue