diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-01 20:00:00 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-01 20:00:00 -0500 |
commit | ef6c31f930fc6ab3f6290cdbd17d47881c6210ac (patch) | |
tree | d57b815889ac3cd4e0f3759df54eabf0fb1fd905 | |
parent | b42338388c7c9c6adc54fb5aec51ff25ecc1d81b (diff) | |
download | cryptography-ef6c31f930fc6ab3f6290cdbd17d47881c6210ac.tar.gz cryptography-ef6c31f930fc6ab3f6290cdbd17d47881c6210ac.tar.bz2 cryptography-ef6c31f930fc6ab3f6290cdbd17d47881c6210ac.zip |
CentOS, does my offering please you?
-rw-r--r-- | cryptography/hazmat/bindings/openssl/ecdh.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ecdh.py b/cryptography/hazmat/bindings/openssl/ecdh.py index 77beb7a3..960d46fb 100644 --- a/cryptography/hazmat/bindings/openssl/ecdh.py +++ b/cryptography/hazmat/bindings/openssl/ecdh.py @@ -24,6 +24,9 @@ static const int Cryptography_HAS_ECDH; """ FUNCTIONS = """ +""" + +MACROS = """ int ECDH_compute_key(void *, size_t, const EC_POINT *, EC_KEY *, void *(*)(const void *, size_t, void *, size_t *)); @@ -35,13 +38,9 @@ int ECDH_set_ex_data(EC_KEY *, int, void *); void *ECDH_get_ex_data(EC_KEY *, int); """ -MACROS = """ -""" - CUSTOMIZATIONS = """ #ifdef OPENSSL_NO_ECDH static const long Cryptography_HAS_ECDH = 0; -typedef void ECDH_METHOD; int (*ECDH_compute_key)(void *, size_t, const EC_POINT *, EC_KEY *, void *(*)(const void *, size_t, void *, |