2
0

CURLOPT_PROXY_SSL_OPTIONS.3 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, 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. .\" **************************************************************************
  22. .\"
  23. .TH CURLOPT_PROXY_SSL_OPTIONS 3 "16 Nov 2016" "libcurl 7.52.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_PROXY_SSL_OPTIONS \- HTTPS proxy SSL behavior options
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY_SSL_OPTIONS,
  30. long bitmask);
  31. .fi
  32. .SH DESCRIPTION
  33. Pass a long with a bitmask to tell libcurl about specific SSL
  34. behaviors. Available bits:
  35. .IP CURLSSLOPT_ALLOW_BEAST
  36. Tells libcurl to not attempt to use any workarounds for a security flaw in the
  37. SSL3 and TLS1.0 protocols. If this option is not used or this bit is set to 0,
  38. the SSL layer libcurl uses may use a work-around for this flaw although it
  39. might cause interoperability problems with some (older) SSL
  40. implementations. WARNING: avoiding this work-around lessens the security, and
  41. by setting this option to 1 you ask for exactly that. This option is only
  42. supported for Secure Transport, NSS and OpenSSL.
  43. .IP CURLSSLOPT_NO_REVOKE
  44. Tells libcurl to disable certificate revocation checks for those SSL backends
  45. where such behavior is present. This option is only supported for Schannel
  46. (the native Windows SSL library), with an exception in the case of Windows'
  47. Untrusted Publishers block list which it seems cannot be bypassed. (Added in
  48. 7.44.0)
  49. .IP CURLSSLOPT_NO_PARTIALCHAIN
  50. Tells libcurl to not accept "partial" certificate chains, which it otherwise
  51. does by default. This option is only supported for OpenSSL and will fail the
  52. certificate verification if the chain ends with an intermediate certificate
  53. and not with a root cert. (Added in 7.68.0)
  54. .IP CURLSSLOPT_REVOKE_BEST_EFFORT
  55. Tells libcurl to ignore certificate revocation checks in case of missing or
  56. offline distribution points for those SSL backends where such behavior is
  57. present. This option is only supported for Schannel (the native Windows SSL
  58. library). If combined with \fICURLSSLOPT_NO_REVOKE\fP, the latter takes
  59. precedence. (Added in 7.70.0)
  60. .IP CURLSSLOPT_AUTO_CLIENT_CERT
  61. Tell libcurl to automatically locate and use a client certificate for
  62. authentication, when requested by the server. This option is only supported
  63. for Schannel (the native Windows SSL library). Prior to 7.77.0 this was the
  64. default behavior in libcurl with Schannel. Since the server can request any
  65. certificate that supports client authentication in the OS certificate store it
  66. could be a privacy violation and unexpected.
  67. (Added in 7.77.0)
  68. .SH DEFAULT
  69. 0
  70. .SH PROTOCOLS
  71. All TLS-based protocols
  72. .SH EXAMPLE
  73. .nf
  74. CURL *curl = curl_easy_init();
  75. if(curl) {
  76. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
  77. curl_easy_setopt(curl, CURLOPT_PROXY, "https://proxy");
  78. /* weaken TLS only for use with silly proxies */
  79. curl_easy_setopt(curl, CURLOPT_PROXY_SSL_OPTIONS, CURLSSLOPT_ALLOW_BEAST |
  80. CURLSSLOPT_NO_REVOKE);
  81. ret = curl_easy_perform(curl);
  82. curl_easy_cleanup(curl);
  83. }
  84. .fi
  85. .SH AVAILABILITY
  86. Added in 7.52.0
  87. .SH RETURN VALUE
  88. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  89. .SH "SEE ALSO"
  90. .BR CURLOPT_PROXY_SSLVERSION "(3), " CURLOPT_PROXY_SSL_CIPHER_LIST "(3), "
  91. .BR CURLOPT_SSLVERSION "(3), " CURLOPT_SSL_CIPHER_LIST "(3), "