summaryrefslogtreecommitdiffstats
path: root/certinfo.h
blob: 42fec06120ece58e73f1ab266f429469db74c755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#ifndef __CERTINFO_H_
#define __CERTINFO_H_

typedef struct _certinfo {
        char *org;
        char *common_name;
        char *email;
} certinfo;

certinfo *parse_tlsid(const char *);
void free_certinfo(certinfo *);

#endif