diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-12-01 14:52:44 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-12-01 14:52:44 -0600 |
commit | 24ea1594afa1b8a0bf7e68bc2f27213351c9c3e1 (patch) | |
tree | 3c78d14e21f6c7f046eede15a6208c4d72b6e038 | |
parent | 2ebd4bd63295bb1acbd2857684e2794272d17e2a (diff) | |
download | cryptography-24ea1594afa1b8a0bf7e68bc2f27213351c9c3e1.tar.gz cryptography-24ea1594afa1b8a0bf7e68bc2f27213351c9c3e1.tar.bz2 cryptography-24ea1594afa1b8a0bf7e68bc2f27213351c9c3e1.zip |
shouldn't need values here
-rw-r--r-- | src/_cffi_src/openssl/ec.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/_cffi_src/openssl/ec.py b/src/_cffi_src/openssl/ec.py index f0be0783..e130a343 100644 --- a/src/_cffi_src/openssl/ec.py +++ b/src/_cffi_src/openssl/ec.py @@ -214,9 +214,9 @@ typedef struct { const char *comment; } EC_builtin_curve; typedef enum { - POINT_CONVERSION_COMPRESSED = 0, - POINT_CONVERSION_UNCOMPRESSED = 1, - POINT_CONVERSION_HYBRID = 2, + POINT_CONVERSION_COMPRESSED, + POINT_CONVERSION_UNCOMPRESSED, + POINT_CONVERSION_HYBRID, } point_conversion_form_t; static const int OPENSSL_EC_NAMED_CURVE = 0; |