mbed TLS v1.3.19
x509_crl.h
Go to the documentation of this file.
1 
24 #ifndef POLARSSL_X509_CRL_H
25 #define POLARSSL_X509_CRL_H
26 
27 #if !defined(POLARSSL_CONFIG_FILE)
28 #include "config.h"
29 #else
30 #include POLARSSL_CONFIG_FILE
31 #endif
32 
33 #include "x509.h"
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
52 typedef struct _x509_crl_entry
53 {
55 
57 
59 
61 
63 }
65 
70 typedef struct _x509_crl
71 {
75  int version;
77 
84 
88 
93  void *sig_opts;
95  struct _x509_crl *next;
96 }
97 x509_crl;
98 
108 int x509_crl_parse_der( x509_crl *chain,
109  const unsigned char *buf, size_t buflen );
121 int x509_crl_parse( x509_crl *chain, const unsigned char *buf, size_t buflen );
122 
123 #if defined(POLARSSL_FS_IO)
124 
134 int x509_crl_parse_file( x509_crl *chain, const char *path );
135 #endif /* POLARSSL_FS_IO */
136 
148 int x509_crl_info( char *buf, size_t size, const char *prefix,
149  const x509_crl *crl );
150 
156 void x509_crl_init( x509_crl *crl );
157 
163 void x509_crl_free( x509_crl *crl );
164 
165 /* \} name */
166 /* \} addtogroup x509_module */
167 
168 #ifdef __cplusplus
169 }
170 #endif
171 
172 #endif /* x509_crl.h */
x509_buf sig
Definition: x509_crl.h:90
struct _x509_crl_entry x509_crl_entry
Certificate revocation list entry.
void x509_crl_init(x509_crl *crl)
Initialize a CRL (chain)
int version
CRL version (1=v1, 2=v2)
Definition: x509_crl.h:75
x509_time next_update
Definition: x509_crl.h:83
Certificate revocation list entry.
Definition: x509_crl.h:52
struct _x509_crl * next
Definition: x509_crl.h:95
void * sig_opts
Signature options to be passed to pk_verify_ext(), e.g.
Definition: x509_crl.h:93
Container for date and time (precision in seconds).
Definition: x509.h:196
Configuration options (set of defines)
x509_buf sig_oid2
Definition: x509_crl.h:89
x509_name issuer
The parsed issuer data (named information object).
Definition: x509_crl.h:80
int x509_crl_parse_file(x509_crl *chain, const char *path)
Load one or more CRLs and append them to the chained list.
x509_buf serial
Definition: x509_crl.h:56
int x509_crl_parse(x509_crl *chain, const unsigned char *buf, size_t buflen)
Parse one or more CRLs and append 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:45
x509_crl_entry entry
The CRL entries containing the certificate revocation times for this CA.
Definition: x509_crl.h:85
x509_buf sig_oid1
Definition: x509_crl.h:76
void x509_crl_free(x509_crl *crl)
Unallocate all CRL data.
x509_buf tbs
The raw certificate body (DER).
Definition: x509_crl.h:73
int x509_crl_parse_der(x509_crl *chain, const unsigned char *buf, size_t buflen)
Parse a DER-encoded CRL and append it to the chained list.
struct _x509_crl_entry * next
Definition: x509_crl.h:62
md_type_t sig_md
Internal representation of the MD algorithm of the signature algorithm, e.g.
Definition: x509_crl.h:91
pk_type_t
Public key types.
Definition: pk.h:92
X.509 generic defines and structures.
x509_time this_update
Definition: x509_crl.h:82
Container for a sequence or list of 'named' ASN.1 data items.
Definition: asn1.h:153
Type-length-value structure that allows for ASN1 using DER.
Definition: asn1.h:121
x509_buf entry_ext
Definition: x509_crl.h:60
pk_type_t sig_pk
Internal representation of the Public Key algorithm of the signature algorithm, e.g.
Definition: x509_crl.h:92
x509_buf raw
Definition: x509_crl.h:54
Certificate revocation list structure.
Definition: x509_crl.h:70
x509_buf raw
The raw certificate data (DER).
Definition: x509_crl.h:72
x509_time revocation_date
Definition: x509_crl.h:58
x509_buf issuer_raw
The raw issuer data (DER).
Definition: x509_crl.h:78
x509_buf crl_ext
Definition: x509_crl.h:87