CURLOPT_CRLFILE.3 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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_CRLFILE 3 "19 Jun 2014" libcurl libcurl
  26. .SH NAME
  27. CURLOPT_CRLFILE \- Certificate Revocation List file
  28. .SH SYNOPSIS
  29. .nf
  30. #include <curl/curl.h>
  31. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_CRLFILE, char *file);
  32. .fi
  33. .SH DESCRIPTION
  34. Pass a char * to a null-terminated string naming a \fIfile\fP with the
  35. concatenation of CRL (in PEM format) to use in the certificate validation that
  36. occurs during the SSL exchange.
  37. When curl is built to use GnuTLS, there is no way to influence the use of CRL
  38. passed to help in the verification process.
  39. When libcurl is built with OpenSSL support, X509_V_FLAG_CRL_CHECK and
  40. X509_V_FLAG_CRL_CHECK_ALL are both set, requiring CRL check against all the
  41. elements of the certificate chain if a CRL file is passed. Also note that
  42. \fICURLOPT_CRLFILE(3)\fP will imply \fBCURLSSLOPT_NO_PARTIALCHAIN\fP (see
  43. \fICURLOPT_SSL_OPTIONS(3)\fP) since curl 7.71.0 due to an OpenSSL bug.
  44. This option makes sense only when used in combination with the
  45. \fICURLOPT_SSL_VERIFYPEER(3)\fP option.
  46. A specific error code (\fICURLE_SSL_CRL_BADFILE\fP) is defined with the
  47. option. It is returned when the SSL exchange fails because the CRL file cannot
  48. be loaded. A failure in certificate verification due to a revocation
  49. information found in the CRL does not trigger this specific error.
  50. The application does not have to keep the string around after setting this
  51. option.
  52. .SH DEFAULT
  53. NULL
  54. .SH PROTOCOLS
  55. All TLS-based protocols
  56. .SH EXAMPLE
  57. .nf
  58. CURL *curl = curl_easy_init();
  59. if(curl) {
  60. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
  61. curl_easy_setopt(curl, CURLOPT_CRLFILE, "/etc/certs/crl.pem");
  62. ret = curl_easy_perform(curl);
  63. curl_easy_cleanup(curl);
  64. }
  65. .fi
  66. .SH AVAILABILITY
  67. Added in 7.19.0
  68. .SH RETURN VALUE
  69. Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
  70. CURLE_OUT_OF_MEMORY if there was insufficient heap space.
  71. .SH "SEE ALSO"
  72. .BR CURLOPT_SSL_VERIFYPEER "(3), " CURLOPT_SSL_VERIFYHOST "(3), "
  73. .BR CURLOPT_PROXY_CRLFILE "(3), "