diff options
author | evilaliv3 <giovanni.pellerano@evilaliv3.org> | 2015-12-24 10:15:51 +0100 |
---|---|---|
committer | evilaliv3 <giovanni.pellerano@evilaliv3.org> | 2015-12-24 20:21:52 +0100 |
commit | 4361aabaa2e9304688507b12f570e01964c99ac9 (patch) | |
tree | 77856b51b4ca5dffe7b50404d3630f414f8d30b8 /src/_cffi_src/openssl | |
parent | 1e63b8470ceb4abdada68b8fce03365fbcd37a2a (diff) | |
download | cryptography-4361aabaa2e9304688507b12f570e01964c99ac9.tar.gz cryptography-4361aabaa2e9304688507b12f570e01964c99ac9.tar.bz2 cryptography-4361aabaa2e9304688507b12f570e01964c99ac9.zip |
Add PEM_write_bio_DHparams binding
Diffstat (limited to 'src/_cffi_src/openssl')
-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 = """ |