diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-09 10:55:52 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-12-09 10:55:52 -0500 |
commit | e4b8b45ae473b93dbdd0f2629e3233e5bcad92b5 (patch) | |
tree | 963a0d594f0e7a4490879068d8f561e163256f15 /src/_cffi_src/openssl | |
parent | 6f27854254ef8c6b1ebe27bcb8a68a6a00a6025f (diff) | |
parent | bfde119374ed3b3961a96f0d21535c12b334f6d7 (diff) | |
download | cryptography-e4b8b45ae473b93dbdd0f2629e3233e5bcad92b5.tar.gz cryptography-e4b8b45ae473b93dbdd0f2629e3233e5bcad92b5.tar.bz2 cryptography-e4b8b45ae473b93dbdd0f2629e3233e5bcad92b5.zip |
Merge pull request #2515 from reaperhulk/sigbus
remove the bindings for these x86_64 specific EC functions
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/ec.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/_cffi_src/openssl/ec.py b/src/_cffi_src/openssl/ec.py index e130a343..f5cbf968 100644 --- a/src/_cffi_src/openssl/ec.py +++ b/src/_cffi_src/openssl/ec.py @@ -15,7 +15,6 @@ INCLUDES = """ TYPES = """ static const int Cryptography_HAS_EC; static const int Cryptography_HAS_EC_1_0_1; -static const int Cryptography_HAS_EC_NISTP_64_GCC_128; static const int Cryptography_HAS_EC2M; static const int Cryptography_HAS_EC_1_0_2; @@ -190,10 +189,6 @@ const EC_METHOD *EC_GFp_simple_method(); const EC_METHOD *EC_GFp_mont_method(); const EC_METHOD *EC_GFp_nist_method(); -const EC_METHOD *EC_GFp_nistp224_method(); -const EC_METHOD *EC_GFp_nistp256_method(); -const EC_METHOD *EC_GFp_nistp521_method(); - const EC_METHOD *EC_GF2m_simple_method(); int EC_METHOD_get_field_type(const EC_METHOD *); @@ -368,17 +363,6 @@ static const long Cryptography_HAS_EC_1_0_1 = 1; #endif -#if defined(OPENSSL_NO_EC) || OPENSSL_VERSION_NUMBER < 0x1000100f || \ - defined(OPENSSL_NO_EC_NISTP_64_GCC_128) -static const long Cryptography_HAS_EC_NISTP_64_GCC_128 = 0; - -const EC_METHOD *(*EC_GFp_nistp224_method)(void) = NULL; -const EC_METHOD *(*EC_GFp_nistp256_method)(void) = NULL; -const EC_METHOD *(*EC_GFp_nistp521_method)(void) = NULL; -#else -static const long Cryptography_HAS_EC_NISTP_64_GCC_128 = 1; -#endif - #if defined(OPENSSL_NO_EC) || defined(OPENSSL_NO_EC2M) static const long Cryptography_HAS_EC2M = 0; |