PolarSSL v1.3.2
x509_crl.h
Go to the documentation of this file.
1 
27 #ifndef POLARSSL_X509_CRL_H
28 #define POLARSSL_X509_CRL_H
29 
30 #include "config.h"
31 
32 #include "x509.h"
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
51 typedef struct _x509_crl_entry
52 {
54 
56 
58 
60 
62 }
64 
69 typedef struct _x509_crl
70 {
74  int version;
76 
83 
87 
92 
93  struct _x509_crl *next;
94 }
95 x509_crl;
96 
107 int x509_crl_parse( x509_crl *chain, const unsigned char *buf, size_t buflen );
108 
109 #if defined(POLARSSL_FS_IO)
110 
119 int x509_crl_parse_file( x509_crl *chain, const char *path );
120 #endif /* POLARSSL_FS_IO */
121 
133 int x509_crl_info( char *buf, size_t size, const char *prefix,
134  const x509_crl *crl );
135 
141 void x509_crl_init( x509_crl *crl );
142 
148 void x509_crl_free( x509_crl *crl );
149 
150 /* \} name */
151 /* \} addtogroup x509_module */
152 
153 #ifdef __cplusplus
154 }
155 #endif
156 
157 #endif /* x509_crl.h */
x509_buf sig
Definition: x509_crl.h:89
struct _x509_crl_entry x509_crl_entry
Certificate revocation list entry.
void x509_crl_init(x509_crl *crl)
Initialize a CRL (chain)
int version
Definition: x509_crl.h:74
x509_time next_update
Definition: x509_crl.h:82
Certificate revocation list entry.
Definition: x509_crl.h:51
struct _x509_crl * next
Definition: x509_crl.h:93
Container for date and time (precision in seconds).
Definition: x509.h:172
Configuration options (set of defines)
x509_buf sig_oid2
Definition: x509_crl.h:88
x509_name issuer
The parsed issuer data (named information object).
Definition: x509_crl.h:79
int x509_crl_parse_file(x509_crl *chain, const char *path)
Load one or more CRLs and add them to the chained list.
x509_buf serial
Definition: x509_crl.h:55
int x509_crl_parse(x509_crl *chain, const unsigned char *buf, size_t buflen)
Parse one or more CRLs and add them to the chained list.
int x509_crl_info(char *buf, size_t size, const char *prefix, const x509_crl *crl)
Returns an informational string about the CRL.
struct _x509_crl x509_crl
Certificate revocation list structure.
md_type_t
Definition: md.h:51
x509_crl_entry entry
The CRL entries containing the certificate revocation times for this CA.
Definition: x509_crl.h:84
x509_buf sig_oid1
Definition: x509_crl.h:75
void x509_crl_free(x509_crl *crl)
Unallocate all CRL data.
x509_buf tbs
The raw certificate body (DER).
Definition: x509_crl.h:72
struct _x509_crl_entry * next
Definition: x509_crl.h:61
md_type_t sig_md
Internal representation of the MD algorithm of the signature algorithm, e.g.
Definition: x509_crl.h:90
pk_type_t
Public key types.
Definition: pk.h:90
X.509 generic defines and structures.
x509_time this_update
Definition: x509_crl.h:81
Container for a sequence or list of 'named' ASN.1 data items.
Definition: asn1.h:148
Type-length-value structure that allows for ASN1 using DER.
Definition: asn1.h:116
x509_buf entry_ext
Definition: x509_crl.h:59
pk_type_t sig_pk
< Internal representation of the Public Key algorithm of the signature algorithm, e...
Definition: x509_crl.h:91
x509_buf raw
Definition: x509_crl.h:53
Certificate revocation list structure.
Definition: x509_crl.h:69
x509_buf raw
The raw certificate data (DER).
Definition: x509_crl.h:71
x509_time revocation_date
Definition: x509_crl.h:57
x509_buf issuer_raw
The raw issuer data (DER).
Definition: x509_crl.h:77
x509_buf crl_ext
Definition: x509_crl.h:86