PolarSSL v1.3.9
|
Certificate revocation list structure. More...
#include <x509_crl.h>
Data Fields | |
x509_buf | raw |
The raw certificate data (DER). | |
x509_buf | tbs |
The raw certificate body (DER). | |
int | version |
CRL version (1=v1, 2=v2) | |
x509_buf | sig_oid1 |
x509_buf | issuer_raw |
The raw issuer data (DER). | |
x509_name | issuer |
The parsed issuer data (named information object). | |
x509_time | this_update |
x509_time | next_update |
x509_crl_entry | entry |
The CRL entries containing the certificate revocation times for this CA. | |
x509_buf | crl_ext |
x509_buf | sig_oid2 |
x509_buf | sig |
md_type_t | sig_md |
Internal representation of the MD algorithm of the signature algorithm, e.g. | |
pk_type_t | sig_pk |
Internal representation of the Public Key algorithm of the signature algorithm, e.g. | |
void * | sig_opts |
Signature options to be passed to pk_verify_ext(), e.g. | |
struct _x509_crl * | next |
Certificate revocation list structure.
Every CRL may have multiple entries.
Definition at line 73 of file x509_crl.h.
x509_buf _x509_crl::crl_ext |
Definition at line 90 of file x509_crl.h.
x509_crl_entry _x509_crl::entry |
The CRL entries containing the certificate revocation times for this CA.
Definition at line 88 of file x509_crl.h.
x509_name _x509_crl::issuer |
The parsed issuer data (named information object).
Definition at line 83 of file x509_crl.h.
x509_buf _x509_crl::issuer_raw |
The raw issuer data (DER).
Definition at line 81 of file x509_crl.h.
struct _x509_crl* _x509_crl::next |
Definition at line 98 of file x509_crl.h.
x509_time _x509_crl::next_update |
Definition at line 86 of file x509_crl.h.
x509_buf _x509_crl::raw |
The raw certificate data (DER).
Definition at line 75 of file x509_crl.h.
x509_buf _x509_crl::sig |
Definition at line 93 of file x509_crl.h.
md_type_t _x509_crl::sig_md |
Internal representation of the MD algorithm of the signature algorithm, e.g.
POLARSSL_MD_SHA256
Definition at line 94 of file x509_crl.h.
x509_buf _x509_crl::sig_oid1 |
Definition at line 79 of file x509_crl.h.
x509_buf _x509_crl::sig_oid2 |
Definition at line 92 of file x509_crl.h.
void* _x509_crl::sig_opts |
Signature options to be passed to pk_verify_ext(), e.g.
for RSASSA-PSS
Definition at line 96 of file x509_crl.h.
pk_type_t _x509_crl::sig_pk |
Internal representation of the Public Key algorithm of the signature algorithm, e.g.
POLARSSL_PK_RSA
Definition at line 95 of file x509_crl.h.
x509_buf _x509_crl::tbs |
The raw certificate body (DER).
The part that is To Be Signed.
Definition at line 76 of file x509_crl.h.
x509_time _x509_crl::this_update |
Definition at line 85 of file x509_crl.h.
int _x509_crl::version |
CRL version (1=v1, 2=v2)
Definition at line 78 of file x509_crl.h.