CURLOPT_SSL_OPTIONS.3 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" * SPDX-License-Identifier: curl
  22. .\" *
  23. .\" **************************************************************************
  24. .\"
  25. .TH CURLOPT_SSL_OPTIONS 3 "January 05, 2023" "libcurl 7.88.1" "curl_easy_setopt options"
  26. .SH NAME
  27. CURLOPT_SSL_OPTIONS \- SSL behavior options
  28. .SH SYNOPSIS
  29. .nf
  30. #include <curl/curl.h>
  31. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SSL_OPTIONS, long bitmask);
  32. .fi
  33. .SH DESCRIPTION
  34. Pass a long with a bitmask to tell libcurl about specific SSL
  35. behaviors. Available bits:
  36. .IP CURLSSLOPT_ALLOW_BEAST
  37. Tells libcurl to not attempt to use any workarounds for a security flaw in the
  38. SSL3 and TLS1.0 protocols. If this option is not used or this bit is set to 0,
  39. the SSL layer libcurl uses may use a work-around for this flaw although it
  40. might cause interoperability problems with some (older) SSL
  41. implementations. WARNING: avoiding this work-around lessens the security, and
  42. by setting this option to 1 you ask for exactly that. This option is only
  43. supported for Secure Transport, NSS and OpenSSL.
  44. .IP CURLSSLOPT_NO_REVOKE
  45. Tells libcurl to disable certificate revocation checks for those SSL backends
  46. where such behavior is present. This option is only supported for Schannel
  47. (the native Windows SSL library), with an exception in the case of Windows'
  48. Untrusted Publishers block list which it seems cannot be bypassed. (Added in
  49. 7.44.0)
  50. .IP CURLSSLOPT_NO_PARTIALCHAIN
  51. Tells libcurl to not accept "partial" certificate chains, which it otherwise
  52. does by default. This option is only supported for OpenSSL and will fail the
  53. certificate verification if the chain ends with an intermediate certificate
  54. and not with a root cert. (Added in 7.68.0)
  55. .IP CURLSSLOPT_REVOKE_BEST_EFFORT
  56. Tells libcurl to ignore certificate revocation checks in case of missing or
  57. offline distribution points for those SSL backends where such behavior is
  58. present. This option is only supported for Schannel (the native Windows SSL
  59. library). If combined with \fICURLSSLOPT_NO_REVOKE\fP, the latter takes
  60. precedence. (Added in 7.70.0)
  61. .IP CURLSSLOPT_NATIVE_CA
  62. Tell libcurl to use the operating system's native CA store for certificate
  63. verification. Works only on Windows when built to use OpenSSL. If you set this
  64. option and also set a CA certificate file or directory then during verification
  65. those certificates are searched in addition to the native CA store.
  66. (Added in 7.71.0)
  67. .IP CURLSSLOPT_AUTO_CLIENT_CERT
  68. Tell libcurl to automatically locate and use a client certificate for
  69. authentication, when requested by the server. This option is only supported
  70. for Schannel (the native Windows SSL library). Prior to 7.77.0 this was the
  71. default behavior in libcurl with Schannel. Since the server can request any
  72. certificate that supports client authentication in the OS certificate store it
  73. could be a privacy violation and unexpected.
  74. (Added in 7.77.0)
  75. .SH DEFAULT
  76. 0
  77. .SH PROTOCOLS
  78. All TLS-based protocols
  79. .SH EXAMPLE
  80. .nf
  81. CURL *curl = curl_easy_init();
  82. if(curl) {
  83. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
  84. /* weaken TLS only for use with silly servers */
  85. curl_easy_setopt(curl, CURLOPT_SSL_OPTIONS, (long)CURLSSLOPT_ALLOW_BEAST |
  86. CURLSSLOPT_NO_REVOKE);
  87. ret = curl_easy_perform(curl);
  88. curl_easy_cleanup(curl);
  89. }
  90. .fi
  91. .SH AVAILABILITY
  92. Added in 7.25.0
  93. .SH RETURN VALUE
  94. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  95. .SH "SEE ALSO"
  96. .BR CURLOPT_SSLVERSION "(3), " CURLOPT_SSL_CIPHER_LIST "(3), "