diff options
author | Ashwini Oruganti <ashwini.oruganti@gmail.com> | 2014-05-01 11:55:56 -0700 |
---|---|---|
committer | Ashwini Oruganti <ashwini.oruganti@gmail.com> | 2014-05-01 11:55:56 -0700 |
commit | 8fc02962958f85feaab168248503854b6e0d50aa (patch) | |
tree | 3de92b6d6e49d818a9bf33f71d504c9db36048e2 | |
parent | 5e66092907c6c6f461f30165b0910dea1fc314d5 (diff) | |
download | cryptography-8fc02962958f85feaab168248503854b6e0d50aa.tar.gz cryptography-8fc02962958f85feaab168248503854b6e0d50aa.tar.bz2 cryptography-8fc02962958f85feaab168248503854b6e0d50aa.zip |
Fill in the INCLUDES part
-rw-r--r-- | cryptography/hazmat/bindings/openssl/ecdh.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ecdh.py b/cryptography/hazmat/bindings/openssl/ecdh.py index 6793ea4b..ca448f9f 100644 --- a/cryptography/hazmat/bindings/openssl/ecdh.py +++ b/cryptography/hazmat/bindings/openssl/ecdh.py @@ -14,6 +14,9 @@ from __future__ import absolute_import, division, print_function INCLUDES = """ +#ifdef OPENSSL_NO_ECDH +#include <openssl/ecdh.h> +#endif """ TYPES = """ |