aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/ec.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-01 08:15:22 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-01 08:15:22 -0600
commit04b66daa312165bf311803c2e85c71d0b62c42ef (patch)
tree8800b2ae764dc24e7f550685c27c74fd668ec22f /src/_cffi_src/openssl/ec.py
parent9a426a5003b324cfd77a33bcbe81d9763ea4ba95 (diff)
downloadcryptography-04b66daa312165bf311803c2e85c71d0b62c42ef.tar.gz
cryptography-04b66daa312165bf311803c2e85c71d0b62c42ef.tar.bz2
cryptography-04b66daa312165bf311803c2e85c71d0b62c42ef.zip
let the compiler figure out these values
Diffstat (limited to 'src/_cffi_src/openssl/ec.py')
-rw-r--r--src/_cffi_src/openssl/ec.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/_cffi_src/openssl/ec.py b/src/_cffi_src/openssl/ec.py
index 6a0aa720..0635ca29 100644
--- a/src/_cffi_src/openssl/ec.py
+++ b/src/_cffi_src/openssl/ec.py
@@ -30,9 +30,10 @@ typedef struct {
const char *comment;
} EC_builtin_curve;
typedef enum {
- POINT_CONVERSION_COMPRESSED = 2,
- POINT_CONVERSION_UNCOMPRESSED = 4,
- POINT_CONVERSION_HYBRID = 6
+ POINT_CONVERSION_COMPRESSED,
+ POINT_CONVERSION_UNCOMPRESSED,
+ POINT_CONVERSION_HYBRID,
+ ...
} point_conversion_form_t;
"""