diff options
author | Laurens Van Houtven <_@lvh.cc> | 2014-06-20 15:12:23 +0200 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-06-21 16:53:12 -0600 |
commit | 28e935c23d10a31e4f44d14140f8d6e302292bb3 (patch) | |
tree | 1b3e33a215604c8e4890e9803cb6daa737165d1a | |
parent | 79a5130f7985aecd6b0680aa4a3f2d142d0bdc26 (diff) | |
download | cryptography-28e935c23d10a31e4f44d14140f8d6e302292bb3.tar.gz cryptography-28e935c23d10a31e4f44d14140f8d6e302292bb3.tar.bz2 cryptography-28e935c23d10a31e4f44d14140f8d6e302292bb3.zip |
Add STACK_OF(X509_CRL)
-rw-r--r-- | cryptography/hazmat/bindings/openssl/x509.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/x509.py b/cryptography/hazmat/bindings/openssl/x509.py index 3785cc61..cf38df32 100644 --- a/cryptography/hazmat/bindings/openssl/x509.py +++ b/cryptography/hazmat/bindings/openssl/x509.py @@ -24,11 +24,13 @@ INCLUDES = """ * Note that the result is an opaque type. */ typedef STACK_OF(X509) Cryptography_STACK_OF_X509; +typedef STACK_OF(X509_CRL) Cryptography_STACK_OF_X509_CRL; typedef STACK_OF(X509_REVOKED) Cryptography_STACK_OF_X509_REVOKED; """ TYPES = """ typedef ... Cryptography_STACK_OF_X509; +typedef ... Cryptography_STACK_OF_X509_CRL; typedef ... Cryptography_STACK_OF_X509_REVOKED; typedef struct { |