simplessl.c
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:4k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *                                  _   _ ____  _
  3.  *  Project                     ___| | | |  _ | |
  4.  *                             / __| | | | |_) | |
  5.  *                            | (__| |_| |  _ <| |___
  6.  *                             ___|___/|_| ______|
  7.  *
  8.  * $Id: simplessl.c,v 1.9 2008-05-22 21:20:09 danf Exp $
  9.  */
  10. #include <stdio.h>
  11. #include <curl/curl.h>
  12. #include <curl/types.h>
  13. #include <curl/easy.h>
  14. /* some requirements for this to work:
  15.    1.   set pCertFile to the file with the client certificate
  16.    2.   if the key is passphrase protected, set pPassphrase to the
  17.         passphrase you use
  18.    3.   if you are using a crypto engine:
  19.    3.1. set a #define USE_ENGINE
  20.    3.2. set pEngine to the name of the crypto engine you use
  21.    3.3. set pKeyName to the key identifier you want to use
  22.    4.   if you don't use a crypto engine:
  23.    4.1. set pKeyName to the file name of your client key
  24.    4.2. if the format of the key file is DER, set pKeyType to "DER"
  25.    !! verify of the server certificate is not implemented here !!
  26.    **** This example only works with libcurl 7.9.3 and later! ****
  27. */
  28. int main(int argc, char **argv)
  29. {
  30.   CURL *curl;
  31.   CURLcode res;
  32.   FILE *headerfile;
  33.   const char *pPassphrase = NULL;
  34.   static const char *pCertFile = "testcert.pem";
  35.   static const char *pCACertFile="cacert.pem";
  36.   const char *pKeyName;
  37.   const char *pKeyType;
  38.   const char *pEngine;
  39. #if USE_ENGINE
  40.   pKeyName  = "rsa_test";
  41.   pKeyType  = "ENG";
  42.   pEngine   = "chil";            /* for nChiper HSM... */
  43. #else
  44.   pKeyName  = "testkey.pem";
  45.   pKeyType  = "PEM";
  46.   pEngine   = NULL;
  47. #endif
  48.   headerfile = fopen("dumpit", "w");
  49.   curl_global_init(CURL_GLOBAL_DEFAULT);
  50.   curl = curl_easy_init();
  51.   if(curl) {
  52.     /* what call to write: */
  53.     curl_easy_setopt(curl, CURLOPT_URL, "HTTPS://your.favourite.ssl.site");
  54.     curl_easy_setopt(curl, CURLOPT_WRITEHEADER, headerfile);
  55.     while(1)                    /* do some ugly short cut... */
  56.     {
  57.       if (pEngine)             /* use crypto engine */
  58.       {
  59.         if (curl_easy_setopt(curl, CURLOPT_SSLENGINE,pEngine) != CURLE_OK)
  60.         {                     /* load the crypto engine */
  61.           fprintf(stderr,"can't set crypto enginen");
  62.           break;
  63.         }
  64.         if (curl_easy_setopt(curl, CURLOPT_SSLENGINE_DEFAULT,1L) != CURLE_OK)
  65.         { /* set the crypto engine as default */
  66.           /* only needed for the first time you load
  67.              a engine in a curl object... */
  68.           fprintf(stderr,"can't set crypto engine as defaultn");
  69.           break;
  70.         }
  71.       }
  72.       /* cert is stored PEM coded in file... */
  73.       /* since PEM is default, we needn't set it for PEM */
  74.       curl_easy_setopt(curl,CURLOPT_SSLCERTTYPE,"PEM");
  75.       /* set the cert for client authentication */
  76.       curl_easy_setopt(curl,CURLOPT_SSLCERT,pCertFile);
  77.       /* sorry, for engine we must set the passphrase
  78.          (if the key has one...) */
  79.       if (pPassphrase)
  80.         curl_easy_setopt(curl,CURLOPT_KEYPASSWD,pPassphrase);
  81.       /* if we use a key stored in a crypto engine,
  82.          we must set the key type to "ENG" */
  83.       curl_easy_setopt(curl,CURLOPT_SSLKEYTYPE,pKeyType);
  84.       /* set the private key (file or ID in engine) */
  85.       curl_easy_setopt(curl,CURLOPT_SSLKEY,pKeyName);
  86.       /* set the file with the certs vaildating the server */
  87.       curl_easy_setopt(curl,CURLOPT_CAINFO,pCACertFile);
  88.       /* disconnect if we can't validate server's cert */
  89.       curl_easy_setopt(curl,CURLOPT_SSL_VERIFYPEER,1L);
  90.       res = curl_easy_perform(curl);
  91.       break;                   /* we are done... */
  92.     }
  93.     /* always cleanup */
  94.     curl_easy_cleanup(curl);
  95.   }
  96.   curl_global_cleanup();
  97.   return 0;
  98. }