diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2016-03-09 21:13:08 -0500 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2016-03-09 21:13:08 -0500 |
commit | e2dc8891f149d4e45dc39b18146e5fa84e3a12f4 (patch) | |
tree | 7ada3a11ef4846b99b12e113628dff7c5e546445 | |
parent | 3a0fe5a86138571f4b3c94e702b1c8fc83709670 (diff) | |
parent | cedf1c1326c0dd07a54c4f71a368dd7418fe4823 (diff) | |
download | cryptography-e2dc8891f149d4e45dc39b18146e5fa84e3a12f4.tar.gz cryptography-e2dc8891f149d4e45dc39b18146e5fa84e3a12f4.tar.bz2 cryptography-e2dc8891f149d4e45dc39b18146e5fa84e3a12f4.zip |
Merge pull request #2793 from reaperhulk/110-patch-14
ECDSA_SIG can be opaque too
-rw-r--r-- | src/_cffi_src/openssl/ecdsa.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/_cffi_src/openssl/ecdsa.py b/src/_cffi_src/openssl/ecdsa.py index 7cbe5215..f3e9fba0 100644 --- a/src/_cffi_src/openssl/ecdsa.py +++ b/src/_cffi_src/openssl/ecdsa.py @@ -13,10 +13,7 @@ INCLUDES = """ TYPES = """ static const int Cryptography_HAS_ECDSA; -typedef struct { - BIGNUM *r; - BIGNUM *s; -} ECDSA_SIG; +typedef ... ECDSA_SIG; typedef ... CRYPTO_EX_new; typedef ... CRYPTO_EX_dup; |