commit | 7978393c404dcbed79acd2a1e6d5ae1414743cd7 | [log] [tgz] |
---|---|---|
author | Aviv Palivoda <palaviv@gmail.com> | Sun Dec 18 18:21:30 2016 +0200 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Sun Dec 18 11:21:30 2016 -0500 |
tree | 73b2c42272467b813c57ba0440b8dfc668954674 | |
parent | c8f47ad2122efdd5e772aee13ed5d4c64e7d6086 [diff] |
Add d2i_DHparams_bio, i2d_DHparams_bio bindings (#3322)
diff --git a/src/_cffi_src/openssl/dh.py b/src/_cffi_src/openssl/dh.py index 9b776b9..a405da0 100644 --- a/src/_cffi_src/openssl/dh.py +++ b/src/_cffi_src/openssl/dh.py
@@ -38,6 +38,8 @@ MACROS = """ int DH_generate_parameters_ex(DH *, int, int, BN_GENCB *); +DH *d2i_DHparams_bio(BIO *, DH **); +int i2d_DHparams_bio(BIO *, DH *); """ CUSTOMIZATIONS = """