aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-03-05 13:58:33 -0800
committerAlex Gaynor <alex.gaynor@gmail.com>2014-03-05 13:58:33 -0800
commite92819586845e58c2389f672c5e1c98cf1640411 (patch)
treec2686561b03039e5f5d32b871209fd73f4164d5c
parent138c12ca2fb7be92f8e2ab4594201f31a51b99a6 (diff)
downloadcryptography-e92819586845e58c2389f672c5e1c98cf1640411.tar.gz
cryptography-e92819586845e58c2389f672c5e1c98cf1640411.tar.bz2
cryptography-e92819586845e58c2389f672c5e1c98cf1640411.zip
Try to make this not-opaque. Might not work on CentOS
-rw-r--r--cryptography/hazmat/bindings/openssl/ec.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/cryptography/hazmat/bindings/openssl/ec.py b/cryptography/hazmat/bindings/openssl/ec.py
index 22de56d2..84179cd1 100644
--- a/cryptography/hazmat/bindings/openssl/ec.py
+++ b/cryptography/hazmat/bindings/openssl/ec.py
@@ -23,7 +23,9 @@ TYPES = """
static const int Cryptography_HAS_EC;
typedef ... EC_KEY;
-typedef ... EC_builtin_curve;
+typedef struct {
+ ...;
+} EC_builtin_curve;
static const int NID_X9_62_c2pnb163v1;
static const int NID_X9_62_c2pnb163v2;