Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
CURLOPT_CAINFO(3) | Library Functions Manual | CURLOPT_CAINFO(3) |
NAME
CURLOPT_CAINFO - path to Certificate Authority (CA) bundleSYNOPSIS
#include <curl/curl.h>
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_CAINFO, char *path);
DESCRIPTION
Pass a char pointer to a null-terminated string naming a file holding one or more certificates to verify the peer with.DEFAULT
Built-in system specific. When curl is built with Secure Transport or Schannel, this option is not set by default.PROTOCOLS
This functionality affects all TLS based protocols: HTTPS, FTPS, IMAPS, POP3S, SMTPS etc.EXAMPLE
int main(void)
{
CURL *curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/");
curl_easy_setopt(curl, CURLOPT_CAINFO, "/etc/certs/cabundle.pem");
curl_easy_perform(curl);
curl_easy_cleanup(curl);
}
}
HISTORY
Schannel support added in libcurl 7.60.AVAILABILITY
Added in curl 7.4.2RETURN VALUE
Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or CURLE_OUT_OF_MEMORY if there was insufficient heap space.SEE ALSO
CURLINFO_CAINFO(3), CURLOPT_CAINFO_BLOB(3), CURLOPT_CAPATH(3), CURLOPT_CA_CACHE_TIMEOUT(3), CURLOPT_SSL_VERIFYHOST(3), CURLOPT_SSL_VERIFYPEER(3)2024-11-21 | libcurl |