aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl
diff options
context:
space:
mode:
authorErik Trauschke <erik.trauschke@gmail.com>2015-11-19 10:27:01 -0800
committerErik Trauschke <erik.trauschke@gmail.com>2015-11-19 10:27:01 -0800
commit6abe2bb4eefb224867683152bb204176b68399c9 (patch)
treed3a6306d27479ef3deaf1af9dbaec1cd68028134 /src/_cffi_src/openssl
parenta06e0cf66906a723682731af53e295179d5c9f4d (diff)
downloadcryptography-6abe2bb4eefb224867683152bb204176b68399c9.tar.gz
cryptography-6abe2bb4eefb224867683152bb204176b68399c9.tar.bz2
cryptography-6abe2bb4eefb224867683152bb204176b68399c9.zip
add tbsCertList and signature interfaces to CRLs
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r--src/_cffi_src/openssl/x509.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/x509.py b/src/_cffi_src/openssl/x509.py
index 2024101b..ebb78a31 100644
--- a/src/_cffi_src/openssl/x509.py
+++ b/src/_cffi_src/openssl/x509.py
@@ -65,6 +65,7 @@ typedef struct {
typedef struct {
X509_CRL_INFO *crl;
X509_ALGOR *sig_alg;
+ ASN1_BIT_STRING *signature;
...;
} X509_CRL;
@@ -259,6 +260,8 @@ void PKCS8_PRIV_KEY_INFO_free(PKCS8_PRIV_KEY_INFO *);
MACROS = """
int i2d_X509_CINF(X509_CINF *, unsigned char **);
+int i2d_X509_CRL_INFO(X509_CRL_INFO *, unsigned char **);
+
long X509_get_version(X509 *);
ASN1_TIME *X509_get_notBefore(X509 *);