Mbed TLS v3.6.4
x509_crl.h
Go to the documentation of this file.
1 
6 /*
7  * Copyright The Mbed TLS Contributors
8  * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
9  */
10 #ifndef MBEDTLS_X509_CRL_H
11 #define MBEDTLS_X509_CRL_H
12 #include "mbedtls/private_access.h"
13 
14 #include "mbedtls/build_info.h"
15 
16 #include "mbedtls/x509.h"
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
39 typedef struct mbedtls_x509_crl_entry {
52 
57 }
59 
64 typedef struct mbedtls_x509_crl {
68  int version;
77 
81 
86  void *MBEDTLS_PRIVATE(sig_opts);
92 }
94 
110  const unsigned char *buf, size_t buflen);
127 int mbedtls_x509_crl_parse(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen);
128 
129 #if defined(MBEDTLS_FS_IO)
130 
144 int mbedtls_x509_crl_parse_file(mbedtls_x509_crl *chain, const char *path);
145 #endif /* MBEDTLS_FS_IO */
146 
147 #if !defined(MBEDTLS_X509_REMOVE_INFO)
148 
159 int mbedtls_x509_crl_info(char *buf, size_t size, const char *prefix,
160  const mbedtls_x509_crl *crl);
161 #endif /* !MBEDTLS_X509_REMOVE_INFO */
162 
169 
176 
180 #ifdef __cplusplus
181 }
182 #endif
183 
184 #endif /* mbedtls_x509_crl.h */
Definition: x509_crl.h:39
int mbedtls_x509_crl_info(char *buf, size_t size, const char *prefix, const mbedtls_x509_crl *crl)
Returns an informational string about the CRL.
struct mbedtls_x509_crl mbedtls_x509_crl
mbedtls_x509_buf serial
Definition: x509_crl.h:43
mbedtls_x509_buf issuer_raw
Definition: x509_crl.h:71
#define MBEDTLS_PRIVATE(member)
mbedtls_pk_type_t
Public key types.
Definition: pk.h:73
struct mbedtls_x509_crl * next
Definition: x509_crl.h:91
int mbedtls_x509_crl_parse_der(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen)
Parse a DER-encoded CRL and append it to the chained list.
mbedtls_x509_name issuer
Definition: x509_crl.h:73
int mbedtls_x509_crl_parse_file(mbedtls_x509_crl *chain, const char *path)
Load one or more CRLs and append them to the chained list.
mbedtls_x509_crl_entry entry
Definition: x509_crl.h:78
mbedtls_x509_time this_update
Definition: x509_crl.h:75
void mbedtls_x509_crl_free(mbedtls_x509_crl *crl)
Unallocate all CRL data.
mbedtls_x509_buf raw
Definition: x509_crl.h:41
mbedtls_x509_time next_update
Definition: x509_crl.h:76
int mbedtls_x509_crl_parse(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen)
Parse one or more CRLs and append them to the chained list.
mbedtls_x509_buf raw
Definition: x509_crl.h:65
struct mbedtls_x509_crl_entry mbedtls_x509_crl_entry
Macro wrapper for struct's members.
void mbedtls_x509_crl_init(mbedtls_x509_crl *crl)
Initialize a CRL (chain)
X.509 generic defines and structures.
mbedtls_x509_buf sig_oid
Definition: x509_crl.h:69
Build-time configuration info.
mbedtls_x509_buf tbs
Definition: x509_crl.h:66
mbedtls_x509_buf crl_ext
Definition: x509_crl.h:80
mbedtls_x509_time revocation_date
Definition: x509_crl.h:45
struct mbedtls_x509_crl_entry * next
Definition: x509_crl.h:56
mbedtls_x509_buf entry_ext
Definition: x509_crl.h:51
mbedtls_md_type_t
Supported message digests.
Definition: md.h:47