9a079a923e7d7700f7f593a49ee17f079705ea07
[platform/upstream/curl.git] / docs / libcurl / opts / CURLOPT_PROXY_CRLFILE.3
1 .\" **************************************************************************
2 .\" *                                  _   _ ____  _
3 .\" *  Project                     ___| | | |  _ \| |
4 .\" *                             / __| | | | |_) | |
5 .\" *                            | (__| |_| |  _ <| |___
6 .\" *                             \___|\___/|_| \_\_____|
7 .\" *
8 .\" * Copyright (C) 1998 - 2016, 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.haxx.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_CRLFILE 3 "16 Nov 2016" "libcurl 7.52.0" "curl_easy_setopt options"
24 .SH NAME
25 CURLOPT_PROXY_CRLFILE \- specify a proxy Certificate Revocation List file
26 .SH SYNOPSIS
27 #include <curl/curl.h>
28
29 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY_CRLFILE, char *file);
30 .SH DESCRIPTION
31 This option is for connecting to a HTTPS proxy, not a HTTPS server.
32
33 Pass a char * to a zero terminated string naming a \fIfile\fP with the
34 concatenation of CRL (in PEM format) to use in the certificate validation that
35 occurs during the SSL exchange.
36
37 When curl is built to use NSS or GnuTLS, there is no way to influence the use
38 of CRL passed to help in the verification process. When libcurl is built with
39 OpenSSL support, X509_V_FLAG_CRL_CHECK and X509_V_FLAG_CRL_CHECK_ALL are both
40 set, requiring CRL check against all the elements of the certificate chain if
41 a CRL file is passed.
42
43 This option makes sense only when used in combination with the
44 \fICURLOPT_PROXY_SSL_VERIFYPEER(3)\fP option.
45
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
51 The application does not have to keep the string around after setting this
52 option.
53 .SH DEFAULT
54 NULL
55 .SH PROTOCOLS
56 Used with HTTPS proxy.
57 .SH EXAMPLE
58 TODO
59 .SH AVAILABILITY
60 Added in 7.52.0
61 .SH RETURN VALUE
62 Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
63 CURLE_OUT_OF_MEMORY if there was insufficient heap space.
64 .SH "SEE ALSO"
65 .BR CURLOPT_PROXY_SSL_VERIFYPEER "(3), " CURLOPT_PROXY_SSL_VERIFYHOST "(3), "
66 .BR CURLOPT_SSL_VERIFYPEER "(3), " CURLOPT_SSL_VERIFYHOST "(3), "