certinfo.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2011, 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 http://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. #include <stdio.h>
  23. #include <curl/curl.h>
  24. static size_t wrfu(void *ptr, size_t size, size_t nmemb, void *stream)
  25. {
  26. (void)stream;
  27. (void)ptr;
  28. return size * nmemb;
  29. }
  30. int main(void)
  31. {
  32. CURL *curl;
  33. CURLcode res;
  34. curl_global_init(CURL_GLOBAL_DEFAULT);
  35. curl = curl_easy_init();
  36. if(curl) {
  37. curl_easy_setopt(curl, CURLOPT_URL, "https://www.example.com/");
  38. curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, wrfu);
  39. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
  40. curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
  41. curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L);
  42. curl_easy_setopt(curl, CURLOPT_CERTINFO, 1L);
  43. res = curl_easy_perform(curl);
  44. if(!res) {
  45. union {
  46. struct curl_slist *to_info;
  47. struct curl_certinfo *to_certinfo;
  48. } ptr;
  49. ptr.to_info = NULL;
  50. res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &ptr.to_info);
  51. if(!res && ptr.to_info) {
  52. int i;
  53. printf("%d certs!\n", ptr.to_certinfo->num_of_certs);
  54. for(i = 0; i < ptr.to_certinfo->num_of_certs; i++) {
  55. struct curl_slist *slist;
  56. for(slist = ptr.to_certinfo->certinfo[i]; slist; slist = slist->next)
  57. printf("%s\n", slist->data);
  58. }
  59. }
  60. }
  61. curl_easy_cleanup(curl);
  62. }
  63. curl_global_cleanup();
  64. return 0;
  65. }