diff options
author | Aviv Palivoda <palaviv@gmail.com> | 2016-12-18 18:21:30 +0200 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-12-18 11:21:30 -0500 |
commit | 7978393c404dcbed79acd2a1e6d5ae1414743cd7 (patch) | |
tree | 73b2c42272467b813c57ba0440b8dfc668954674 /src/_cffi_src/openssl | |
parent | c8f47ad2122efdd5e772aee13ed5d4c64e7d6086 (diff) | |
download | cryptography-7978393c404dcbed79acd2a1e6d5ae1414743cd7.tar.gz cryptography-7978393c404dcbed79acd2a1e6d5ae1414743cd7.tar.bz2 cryptography-7978393c404dcbed79acd2a1e6d5ae1414743cd7.zip |
Add d2i_DHparams_bio, i2d_DHparams_bio bindings (#3322)
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/dh.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/dh.py b/src/_cffi_src/openssl/dh.py index 9b776b9d..a405da03 100644 --- a/src/_cffi_src/openssl/dh.py +++ b/src/_cffi_src/openssl/dh.py @@ -38,6 +38,8 @@ int DH_set0_key(DH *, BIGNUM *, BIGNUM *); MACROS = """ int DH_generate_parameters_ex(DH *, int, int, BN_GENCB *); +DH *d2i_DHparams_bio(BIO *, DH **); +int i2d_DHparams_bio(BIO *, DH *); """ CUSTOMIZATIONS = """ |