gpt4 book ai didi

c++ libcurl无法访问,命令行有效

转载 作者:行者123 更新时间:2023-11-27 23:57:34 27 4
gpt4 key购买 nike

我正在尝试通过 TLSv1.2 连接从 curl 访问网络服务。我能够通过命令行成功访问该服务:

  curl -l --tlsv1.2 -E client.pem -v https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000010

但是当在 C++ 中使用 libcurl 尝试它时,我收到错误:

 error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure

这是代码的简短版本:

#include <stdio.h>
#include <string.h>
#include <curl/curl.h>

int main(void) {
CURL *curl;
CURLcode res = CURLE_OK;

curl = curl_easy_init();
if (curl) {
curl_easy_setopt(curl, CURLOPT_URL, "https://test-as.sgx.trustedservices.intel.com:443/attestation/sgx/v1/sigrl/00000010");

curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2);
curl_easy_setopt(curl, CURLOPT_CAINFO, "./client.pem");
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);

res = curl_easy_perform(curl);

if (res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));

curl_easy_cleanup(curl);
}

return (int)res;
}

我是否必须设置任何其他选项?

curl 的版本:

 curl --version
curl 7.47.0 (x86_64-pc-linux-gnu) libcurl/7.47.0 GnuTLS/3.4.10 zlib/1.2.8 libidn/1.32 librtmp/2.3

libcurl 版本:

 ii  libcurl3:amd64                              7.47.0-1ubuntu2.2        
ii libcurl3-gnutls:amd64 7.47.0-1ubuntu2.2
ii libcurl4-openssl-dev:amd64 7.47.0-1ubuntu2.2

最佳答案

似乎问题是您错误地使用了您的客户端证书,因为您将其设置为用作 CA 来验证服务器端证书

curl_easy_setopt(curl, CURLOPT_CAINFO, "./client.pem");

这与 client.pem 在使用 -E 标志传递的命令行中的使用方式不匹配。

-E, --cert <certificate[:password]>
(SSL) Tells curl to use the specified client certificate file when getting a file with HTTPS, FTPS or another SSL-based protocol.

尝试删除该行并改用以下行:

curl_easy_setopt(curl, CURLOPT_SSLCERT, "./client.pem");
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0);

如果可行,您应该删除将 CURLOPT_SSL_VERIFYPEER 设置为 0 的行,并尝试设置适当的 CA 来验证服务器端证书。

关于c++ libcurl无法访问,命令行有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41495772/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com