#
bcec0840 |
| 02-Oct-2024 |
Daniel Stenberg |
lib: use bool/TRUE/FALSE properly booleans should use the type 'bool' and set the value to TRUE/FALSE non-booleans should not be 'bool' and should not set the value to TRUE/FALS
lib: use bool/TRUE/FALSE properly booleans should use the type 'bool' and set the value to TRUE/FALSE non-booleans should not be 'bool' and should not set the value to TRUE/FALSE Closes #15123
show more ...
|
#
1e03d4bc |
| 13-Aug-2024 |
Jan Venekamp <1422460+jan2000@users.noreply.github.com> |
rustls: add support for setting TLS version and ciphers Add support for CURLOPT_SSLVERSION, CURLOPT_TLS13_CIPHERS and CURLOPT_SSL_CIPHER_LIST. Closes #14535
|
#
bb9c15e9 |
| 01-Aug-2024 |
Tal Regev |
vtls: fix MSVC 'cast truncates constant value' warning Fixes: ``` curl\lib\vtls\cipher_suite.c(193,3): error C2220: the following warning is treated as an error curl\lib\vtls\cip
vtls: fix MSVC 'cast truncates constant value' warning Fixes: ``` curl\lib\vtls\cipher_suite.c(193,3): error C2220: the following warning is treated as an error curl\lib\vtls\cipher_suite.c(193,3): warning C4310: cast truncates constant value ``` Closes #14341
show more ...
|
#
6343034d |
| 12-Jul-2024 |
Viktor Szakats |
tidy-up: adjust casing of project names Mostly TLS/SSH project name. Closes #14160
|
#
2b52fe41 |
| 08-May-2024 |
Jan Venekamp <1422460+jan2000@users.noreply.github.com> |
sectransp: use common code for cipher suite lookup Take advantage of the Curl_cipher_suite_walk_str() and Curl_cipher_suite_get_str() functions introduced in commit fba9afe. Clo
sectransp: use common code for cipher suite lookup Take advantage of the Curl_cipher_suite_walk_str() and Curl_cipher_suite_get_str() functions introduced in commit fba9afe. Closes #13521
show more ...
|
#
6e4b7abf |
| 24-Apr-2024 |
Jan Venekamp <1422460+jan2000@users.noreply.github.com> |
bearssl: use common code for cipher suite lookup Take advantage of the Curl_cipher_suite_walk_str() and Curl_cipher_suite_get_str() functions introduced in commit fba9afeb. This
bearssl: use common code for cipher suite lookup Take advantage of the Curl_cipher_suite_walk_str() and Curl_cipher_suite_get_str() functions introduced in commit fba9afeb. This also fixes CURLOPT_SSL_CIPHER_LIST not working at all for bearssl due to commit ff74cef5. Closes #13464
show more ...
|
#
fba9afeb |
| 23-Apr-2024 |
Jan Venekamp <1422460+jan2000@users.noreply.github.com> |
mbedTLS: implement CURLOPT_SSL_CIPHER_LIST option Use a lookup list to set the cipher suites, allowing the ciphers to be set by either openssl or IANA names. To keep the binary
mbedTLS: implement CURLOPT_SSL_CIPHER_LIST option Use a lookup list to set the cipher suites, allowing the ciphers to be set by either openssl or IANA names. To keep the binary size of the lookup list down we compress each entry in the cipher list down to 2 + 6 bytes using the C preprocessor. Closes #13442
show more ...
|