mbedtls_x509_crl Struct Reference

Certificate revocation list structure.

#include <x509_crl.h>

Public Member Functions

mbedtls_x509_buf MBEDTLS_PRIVATE (sig_oid2)
 
mbedtls_x509_buf MBEDTLS_PRIVATE (sig)
 
mbedtls_md_type_t MBEDTLS_PRIVATE (sig_md)
 Internal representation of the MD algorithm of the signature algorithm, e.g.
 
mbedtls_pk_type_t MBEDTLS_PRIVATE (sig_pk)
 Internal representation of the Public Key algorithm of the signature algorithm, e.g.
 
void * MBEDTLS_PRIVATE (sig_opts)
 Signature options to be passed to mbedtls_pk_verify_ext(), e.g.
 

Data Fields

mbedtls_x509_buf raw
 The raw certificate data (DER).
 
mbedtls_x509_buf tbs
 The raw certificate body (DER).
 
int version
 CRL version (1=v1, 2=v2)
 
mbedtls_x509_buf sig_oid
 CRL signature type identifier.
 
mbedtls_x509_buf issuer_raw
 The raw issuer data (DER).
 
mbedtls_x509_name issuer
 The parsed issuer data (named information object).
 
mbedtls_x509_time this_update
 
mbedtls_x509_time next_update
 
mbedtls_x509_crl_entry entry
 The CRL entries containing the certificate revocation times for this CA.
 
mbedtls_x509_buf crl_ext
 
struct mbedtls_x509_crlnext
 Next element in the linked list of CRL.
 

Certificate revocation list structure.

Every CRL may have multiple entries.

Member Function Documentation

◆ MBEDTLS_PRIVATE() [1/3]

mbedtls_md_type_t mbedtls_x509_crl::MBEDTLS_PRIVATE ( sig_md  )

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

MBEDTLS_MD_SHA256

◆ MBEDTLS_PRIVATE() [2/3]

mbedtls_pk_type_t mbedtls_x509_crl::MBEDTLS_PRIVATE ( sig_pk  )

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

MBEDTLS_PK_RSA

◆ MBEDTLS_PRIVATE() [3/3]

void* mbedtls_x509_crl::MBEDTLS_PRIVATE ( sig_opts  )

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

for RSASSA-PSS

Field Documentation

◆ raw

mbedtls_x509_buf mbedtls_x509_crl::raw

The raw certificate data (DER).

◆ tbs

mbedtls_x509_buf mbedtls_x509_crl::tbs

The raw certificate body (DER).

The part that is To Be Signed.

◆ version

int mbedtls_x509_crl::version

CRL version (1=v1, 2=v2)

◆ sig_oid

mbedtls_x509_buf mbedtls_x509_crl::sig_oid

CRL signature type identifier.

◆ issuer_raw

mbedtls_x509_buf mbedtls_x509_crl::issuer_raw

The raw issuer data (DER).

◆ issuer

mbedtls_x509_name mbedtls_x509_crl::issuer

The parsed issuer data (named information object).

◆ entry

mbedtls_x509_crl_entry mbedtls_x509_crl::entry

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

◆ next

struct mbedtls_x509_crl* mbedtls_x509_crl::next

Next element in the linked list of CRL.

NULL indicates the end of the list. Do not modify this field directly.