blob: 87f504825d39fc9fbc9fbae85493dfd6f0e8cabe [file] [log] [blame]
Rick Dean536ba022009-07-24 23:57:27 -05001#ifndef PyOpenSSL_crypto_CRL_H_
2#define PyOpenSSL_crypto_CRL_H_
3
4#include <Python.h>
5
6extern int init_crypto_crl (PyObject *);
7
8extern PyTypeObject crypto_CRL_Type;
9
10#define crypto_CRL_Check(v) ((v)->ob_type == &crypto_CRL_Type)
11
12typedef struct {
13 PyObject_HEAD
14 X509_CRL *crl;
15} crypto_CRLObj;
16
17crypto_CRLObj * crypto_CRL_New(X509_CRL *crl);
18
19#endif