aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-06-30 10:19:36 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2016-06-30 09:19:36 -0500
commit602f88f35dfda15c031de0dce5305e4850df7e07 (patch)
treef13b164981d19ced28d651b372633125b98e5b9e /src/_cffi_src/openssl
parent30d908cb98bc32dd45c7cdd3030a8bb548ad6840 (diff)
downloadcryptography-602f88f35dfda15c031de0dce5305e4850df7e07.tar.gz
cryptography-602f88f35dfda15c031de0dce5305e4850df7e07.tar.bz2
cryptography-602f88f35dfda15c031de0dce5305e4850df7e07.zip
Opaque everything else we can of X509 (#3027)
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r--src/_cffi_src/openssl/x509.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/_cffi_src/openssl/x509.py b/src/_cffi_src/openssl/x509.py
index fe08b271..8ab950fb 100644
--- a/src/_cffi_src/openssl/x509.py
+++ b/src/_cffi_src/openssl/x509.py
@@ -38,20 +38,13 @@ typedef struct {
typedef ... X509_EXTENSION;
typedef ... X509_EXTENSIONS;
+typedef ... X509_REQ;
typedef ... X509_REQ_INFO;
typedef struct {
- X509_REQ_INFO *req_info;
- X509_ALGOR *sig_alg;
- ASN1_BIT_STRING *signature;
- ...;
-} X509_REQ;
-
-typedef struct {
ASN1_INTEGER *serialNumber;
ASN1_TIME *revocationDate;
X509_EXTENSIONS *extensions;
- int sequence;
...;
} X509_REVOKED;
@@ -62,13 +55,10 @@ typedef struct {
typedef struct {
X509_CRL_INFO *crl;
- X509_ALGOR *sig_alg;
- ASN1_BIT_STRING *signature;
...;
} X509_CRL;
typedef struct {
- X509_ALGOR *sig_alg;
X509_CINF *cert_info;
ASN1_BIT_STRING *signature;
...;