-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.EasyHandle.SSLVersion
Andrew Lambert edited this page May 27, 2021
·
10 revisions
libcURL.EasyHandle.SSLVersion
Dim SSLVersion As libcURL.SSLVersionGets and sets the SSL version to use.
| Name | Comment |
|---|---|
SSLVersion.Default |
Let libcURL decide which SSL version to use. |
SSLVersion.TLSv1 |
TLS version 1.x |
SSLVersion.TLSv1_0 |
TLS version 1.0 only (libcURL >=7.34.0) |
SSLVersion.TLSv1_1 |
TLS version 1.1 only (libcURL >=7.34.0) |
SSLVersion.TLSv1_2 |
TLS version 1.2 only (libcURL >=7.34.0) |
SSLVersion.TLSv1_3 |
TLS version 1.3 only (libcURL >=7.52.0) |
SSLVersion.SSLv2 |
SSL version 2.x Deprecated. Do Not Use |
SSLVersion.SSLv3 |
SSL version 3.x Deprecated. Do Not Use |
SSLVersion.Max_TLSv1_0 |
TLSv1.0 is the highest supported version (libcURL >=7.54.0) |
SSLVersion.Max_TLSv1_1 |
TLSv1.1 is the highest supported version (libcURL >=7.54.0) |
SSLVersion.Max_TLSv1_2 |
TLSv1.2 is the highest supported version (libcURL >=7.54.0) |
SSLVersion.Max_TLSv1_3 |
TLSv1.3 is the highest supported version (libcURL >=7.54.0) |
SSLVersion.Max_Default |
Equivalent to Max_TLSv1_2 (libcURL < 7.61.0) or Max_TLSv1_3 (libcurl >= 7.61.0) |
- CURLOPT_SSLVERSION in the libcURL documentation.
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-26 Andrew Lambert, offered under the CC BY-SA 3.0 License.