diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-05 08:49:45 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-05 08:49:45 -0400 |
commit | bfc5ce1e685a1ad02f648830b69cb7fa1e6933b3 (patch) | |
tree | e883bb802aec3d6ad6c9292f6ece4bd495963ef1 /src/_cffi_src/openssl/x509v3.py | |
parent | 2fe409eb008acdfe598386f7f17a502a535e5864 (diff) | |
parent | 152757ce4fec249d5cd9cc4dc3f809e4a48c4c3f (diff) | |
download | cryptography-bfc5ce1e685a1ad02f648830b69cb7fa1e6933b3.tar.gz cryptography-bfc5ce1e685a1ad02f648830b69cb7fa1e6933b3.tar.bz2 cryptography-bfc5ce1e685a1ad02f648830b69cb7fa1e6933b3.zip |
Merge pull request #2205 from reaperhulk/more-cdp-bindings
more bindings for CRLDistributionPoints encoding
Diffstat (limited to 'src/_cffi_src/openssl/x509v3.py')
-rw-r--r-- | src/_cffi_src/openssl/x509v3.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/x509v3.py b/src/_cffi_src/openssl/x509v3.py index f6a18903..d8edb979 100644 --- a/src/_cffi_src/openssl/x509v3.py +++ b/src/_cffi_src/openssl/x509v3.py @@ -283,6 +283,9 @@ X509_EXTENSION *X509V3_EXT_i2d(int, int, void *); DIST_POINT *DIST_POINT_new(void); void DIST_POINT_free(DIST_POINT *); +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 **); """ |