Mbed TLS v3.6.1
Loading...
Searching...
No Matches
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
13
14#include "mbedtls/build_info.h"
15
16#include "mbedtls/x509.h"
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
39typedef struct mbedtls_x509_crl_entry {
52
57}
59
64typedef 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);
127int mbedtls_x509_crl_parse(mbedtls_x509_crl *chain, const unsigned char *buf, size_t buflen);
128
129#if defined(MBEDTLS_FS_IO)
144int 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)
159int 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 */
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.
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.
void mbedtls_x509_crl_init(mbedtls_x509_crl *crl)
Initialize a CRL (chain)
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.
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.
void mbedtls_x509_crl_free(mbedtls_x509_crl *crl)
Unallocate all CRL data.
Build-time configuration info.
mbedtls_md_type_t
Supported message digests.
Definition: md.h:47
mbedtls_pk_type_t
Public key types.
Definition: pk.h:73
Macro wrapper for struct's members.
#define MBEDTLS_PRIVATE(member)
Definition: x509_crl.h:39
mbedtls_x509_buf serial
Definition: x509_crl.h:43
mbedtls_x509_buf entry_ext
Definition: x509_crl.h:51
mbedtls_x509_buf raw
Definition: x509_crl.h:41
mbedtls_x509_time revocation_date
Definition: x509_crl.h:45
struct mbedtls_x509_crl_entry * next
Definition: x509_crl.h:56
mbedtls_x509_buf issuer_raw
Definition: x509_crl.h:71
mbedtls_x509_time this_update
Definition: x509_crl.h:75
mbedtls_x509_buf crl_ext
Definition: x509_crl.h:80
struct mbedtls_x509_crl * next
Definition: x509_crl.h:91
mbedtls_x509_buf raw
Definition: x509_crl.h:65
mbedtls_x509_time next_update
Definition: x509_crl.h:76
mbedtls_x509_crl_entry entry
Definition: x509_crl.h:78
mbedtls_x509_name issuer
Definition: x509_crl.h:73
mbedtls_x509_buf tbs
Definition: x509_crl.h:66
mbedtls_x509_buf sig_oid
Definition: x509_crl.h:69
X.509 generic defines and structures.