diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-24 15:34:53 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-24 15:34:53 -0500 |
commit | e454a5752a9b26c7c097e874409b513d8cc67e51 (patch) | |
tree | e8d997cbd44dfa14fd12331c6b737fe8583ba4d2 | |
parent | 7a9607038678f876cdac33ad1b29ce07346cfaf7 (diff) | |
parent | 4361aabaa2e9304688507b12f570e01964c99ac9 (diff) | |
download | cryptography-e454a5752a9b26c7c097e874409b513d8cc67e51.tar.gz cryptography-e454a5752a9b26c7c097e874409b513d8cc67e51.tar.bz2 cryptography-e454a5752a9b26c7c097e874409b513d8cc67e51.zip |
Merge pull request #2562 from evilaliv3/PEM_write_bio_DHparams
Add PEM_write_bio_DHparams binding
-rw-r--r-- | src/_cffi_src/openssl/pem.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/pem.py b/src/_cffi_src/openssl/pem.py index 846e64e3..4eb6bb45 100644 --- a/src/_cffi_src/openssl/pem.py +++ b/src/_cffi_src/openssl/pem.py @@ -79,6 +79,7 @@ MACROS = """ int PEM_write_bio_ECPrivateKey(BIO *, EC_KEY *, const EVP_CIPHER *, unsigned char *, int, pem_password_cb *, void *); +int PEM_write_bio_DHparams(BIO *, DH *); """ CUSTOMIZATIONS = """ |