diff options
author | Erik Trauschke <erik.trauschke@gmail.com> | 2015-10-20 08:17:51 -0700 |
---|---|---|
committer | Erik Trauschke <erik.trauschke@gmail.com> | 2015-10-20 08:17:51 -0700 |
commit | c219b962f8f02f85edf2a3452fe4136b1211f807 (patch) | |
tree | fc7614079641a4e1d6db576003869afaa6706b2f /src/_cffi_src | |
parent | 9c9910da3f6cef20289d928128f5a1cb71b5e9af (diff) | |
parent | d4e7d43416077f18a37008298abdc566bd3f069d (diff) | |
download | cryptography-c219b962f8f02f85edf2a3452fe4136b1211f807.tar.gz cryptography-c219b962f8f02f85edf2a3452fe4136b1211f807.tar.bz2 cryptography-c219b962f8f02f85edf2a3452fe4136b1211f807.zip |
Merge branch 'crl_ossl_backend' of github.com:etrauschke/cryptography into crl_ossl_backend
Diffstat (limited to 'src/_cffi_src')
-rw-r--r-- | src/_cffi_src/openssl/x509v3.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/x509v3.py b/src/_cffi_src/openssl/x509v3.py index 84e49640..51cac62b 100644 --- a/src/_cffi_src/openssl/x509v3.py +++ b/src/_cffi_src/openssl/x509v3.py @@ -290,6 +290,8 @@ DIST_POINT_NAME *DIST_POINT_NAME_new(void); void DIST_POINT_NAME_free(DIST_POINT_NAME *); int i2d_CRL_DIST_POINTS(Cryptography_STACK_OF_DIST_POINT *, unsigned char **); +GENERAL_NAMES *d2i_GENERAL_NAMES(GENERAL_NAMES **, const unsigned char **, + long); """ CUSTOMIZATIONS = """ |