certinfo.c
Go to the documentation of this file.
1 /***************************************************************************
2  * _ _ ____ _
3  * Project ___| | | | _ \| |
4  * / __| | | | |_) | |
5  * | (__| |_| | _ <| |___
6  * \___|\___/|_| \_\_____|
7  *
8  * Copyright (C) 1998 - 2017, 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 https://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 /* <DESC>
23  * Extract lots of TLS certificate info.
24  * </DESC>
25  */
26 #include <stdio.h>
27 
28 #include <curl/curl.h>
29 
30 static size_t wrfu(void *ptr, size_t size, size_t nmemb, void *stream)
31 {
32  (void)stream;
33  (void)ptr;
34  return size * nmemb;
35 }
36 
37 int main(void)
38 {
39  CURL *curl;
40  CURLcode res;
41 
43 
44  curl = curl_easy_init();
45  if(curl) {
46  curl_easy_setopt(curl, CURLOPT_URL, "https://www.example.com/");
47 
48  curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, wrfu);
49 
50  curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
51  curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);
52 
53  curl_easy_setopt(curl, CURLOPT_VERBOSE, 0L);
54  curl_easy_setopt(curl, CURLOPT_CERTINFO, 1L);
55 
56  res = curl_easy_perform(curl);
57 
58  if(!res) {
59  struct curl_certinfo *certinfo;
60 
61  res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &certinfo);
62 
63  if(!res && certinfo) {
64  int i;
65 
66  printf("%d certs!\n", certinfo->num_of_certs);
67 
68  for(i = 0; i < certinfo->num_of_certs; i++) {
69  struct curl_slist *slist;
70 
71  for(slist = certinfo->certinfo[i]; slist; slist = slist->next)
72  printf("%s\n", slist->data);
73 
74  }
75  }
76 
77  }
78 
79  curl_easy_cleanup(curl);
80  }
81 
83 
84  return 0;
85 }
char * data
Definition: curl.h:2336
UNITTEST_START char * ptr
Definition: unit1330.c:38
CURLcode
Definition: curl.h:454
static int res
#define curl_easy_setopt(handle, option, value)
Definition: typecheck-gcc.h:41
unsigned int i
Definition: unit1303.c:79
#define curl_easy_getinfo(handle, info, arg)
struct curl_slist * next
Definition: curl.h:2337
#define CURL_GLOBAL_DEFAULT
Definition: curl.h:2521
#define printf
Definition: curl_printf.h:40
CURL_EXTERN CURL * curl_easy_init(void)
Definition: easy.c:343
CURL_EXTERN void curl_easy_cleanup(CURL *curl)
int num_of_certs
Definition: curl.h:2415
int main(void)
Definition: certinfo.c:37
static size_t wrfu(void *ptr, size_t size, size_t nmemb, void *stream)
Definition: certinfo.c:30
struct curl_slist ** certinfo
Definition: curl.h:2416
CURL_EXTERN CURLcode curl_global_init(long flags)
curl_global_init() globally initializes curl given a bitwise set of the different features of what to...
Definition: easy.c:271
void CURL
Definition: curl.h:102
size_t size
Definition: unit1302.c:52
CURL_EXTERN void curl_global_cleanup(void)
curl_global_cleanup() globally cleanups curl, uses the value of "init_flags" to determine what needs ...
Definition: easy.c:312
static CURL * curl
Definition: sessioninfo.c:35
CURL_EXTERN CURLcode curl_easy_perform(CURL *curl)


rc_tagdetect_client
Author(s): Monika Florek-Jasinska , Raphael Schaller
autogenerated on Sat Feb 13 2021 03:42:08