PolarSSL v1.3.8
Data Structures
x509_crl.h File Reference

X.509 certificate revocation list parsing. More...

#include "config.h"
#include "x509.h"
Include dependency graph for x509_crl.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  _x509_crl_entry
 Certificate revocation list entry. More...
 
struct  _x509_crl
 Certificate revocation list structure. More...
 

Structures and functions for parsing CRLs

typedef struct _x509_crl_entry x509_crl_entry
 Certificate revocation list entry.
 
typedef struct _x509_crl x509_crl
 Certificate revocation list structure.
 
int x509_crl_parse (x509_crl *chain, const unsigned char *buf, size_t buflen)
 Parse one or more CRLs and add them to the chained list.
 
int x509_crl_parse_file (x509_crl *chain, const char *path)
 Load one or more CRLs and add them to the chained list.
 
int x509_crl_info (char *buf, size_t size, const char *prefix, const x509_crl *crl)
 Returns an informational string about the CRL.
 
void x509_crl_init (x509_crl *crl)
 Initialize a CRL (chain)
 
void x509_crl_free (x509_crl *crl)
 Unallocate all CRL data.
 

Detailed Description

X.509 certificate revocation list parsing.

Copyright (C) 2006-2013, Brainspark B.V.

This file is part of PolarSSL (http://www.polarssl.org) Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>

All rights reserved.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Definition in file x509_crl.h.