0

この証明書を使用して、自己署名証明書と apache 2.x に基づく Web サイトを持っています。SSL 経由で自分のソフトウェアからこのサイトにアクセスしたいだけです。

次のことを行います:

int _tmain(int argc, _TCHAR* argv[])
{

CURL *curl;
  CURLcode res;

  curl_global_init(CURL_GLOBAL_DEFAULT);

  curl = curl_easy_init();
  if(curl) {
    curl_easy_setopt(curl, CURLOPT_URL, "https://mysite.com");
    curl_easy_setopt(curl, CURLOPT_CAINFO, "n.crt");
 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 1L);
 curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
curl_easy_setopt(curl, CURLOPT_CAPATH, "D:\\");
 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L) ;
 curl_easy_setopt(curl, CURLOPT_SSLVERSION, CURL_SSLVERSION_DEFAULT); 

    /* Perform the request, res will get the return code */ 
    res = curl_easy_perform(curl);
    /* Check for errors */ 
    if(res != CURLE_OK)
      fprintf(stderr, "curl_easy_perform() failed: %s\n",
              curl_easy_strerror(res));

    /* always cleanup */ 
    curl_easy_cleanup(curl);
  }

  curl_global_cleanup();

    return 0;
}

しかし、私が得るたびに:

* About to connect() to mysite.com port 443 (#0)
*   Trying 1.1.1.1... * connected
* Connected to mysite.com (1.1.1.1) port 443 (#0)
* error setting certificate verify locations:
  CAfile: n.crt
  CApath: D:\

* Closing connection #0
* Problem with the SSL CA cert (path? access rights?)
curl_easy_perform() failed: Problem with the SSL CA cert (path? access rights?)
Press any key to continue . . .

私が間違っていることを教えてください。

PS:

  • Win7 x64
  • MSVC++ 2010
  • curl 7.19.3 (i386-pc-win32) libcurl/7.19.3 OpenSSL/0.9.8j プロトコル: tftp ftp telnet dict ldap http file https ftps
4

1 に答える 1

0

n.crt の場所を見つけます。実行可能ファイルが実行されると、すべてのファイル チェックはそのパスに関連します。したがって、実行可能ファイルのフォルダーに n.crt を配置するか、CURLOPT_CAINFO を設定するときにファイルの絶対パスを配置します。それ以外の場合は、証明書情報ファイルの相対パスを使用します。

于 2013-05-24T10:12:54.167 に答える