Mbed OS Reference
Loading...
Searching...
No Matches
mbedtls_x509_crl Struct Reference

Certificate revocation list structure. More...

#include <x509_crl.h>

Data Fields

mbedtls_x509_buf raw
 The raw certificate data (DER). More...
 
mbedtls_x509_buf tbs
 The raw certificate body (DER). More...
 
int version
 CRL version (1=v1, 2=v2) More...
 
mbedtls_x509_buf sig_oid
 CRL signature type identifier. More...
 
mbedtls_x509_buf issuer_raw
 The raw issuer data (DER). More...
 
mbedtls_x509_name issuer
 The parsed issuer data (named information object). More...
 
mbedtls_x509_crl_entry entry
 The CRL entries containing the certificate revocation times for this CA. More...
 
mbedtls_md_type_t sig_md
 Internal representation of the MD algorithm of the signature algorithm, e.g. More...
 
mbedtls_pk_type_t sig_pk
 Internal representation of the Public Key algorithm of the signature algorithm, e.g. More...
 
void * sig_opts
 Signature options to be passed to mbedtls_pk_verify_ext(), e.g. More...
 

Detailed Description

Certificate revocation list structure.

Every CRL may have multiple entries.

Definition at line 68 of file x509_crl.h.

Field Documentation

◆ raw

The raw certificate data (DER).

Definition at line 70 of file x509_crl.h.

◆ tbs

The raw certificate body (DER).

The part that is To Be Signed.

Definition at line 71 of file x509_crl.h.

◆ version

int version

CRL version (1=v1, 2=v2)

Definition at line 73 of file x509_crl.h.

◆ sig_oid

CRL signature type identifier.

Definition at line 74 of file x509_crl.h.

◆ issuer_raw

mbedtls_x509_buf issuer_raw

The raw issuer data (DER).

Definition at line 76 of file x509_crl.h.

◆ issuer

The parsed issuer data (named information object).

Definition at line 78 of file x509_crl.h.

◆ entry

The CRL entries containing the certificate revocation times for this CA.

Definition at line 83 of file x509_crl.h.

◆ sig_md

Internal representation of the MD algorithm of the signature algorithm, e.g.

MBEDTLS_MD_SHA256

Definition at line 89 of file x509_crl.h.

◆ sig_pk

Internal representation of the Public Key algorithm of the signature algorithm, e.g.

MBEDTLS_PK_RSA

Definition at line 90 of file x509_crl.h.

◆ sig_opts

void* sig_opts

Signature options to be passed to mbedtls_pk_verify_ext(), e.g.

for RSASSA-PSS

Definition at line 91 of file x509_crl.h.