diff options
-rw-r--r-- | cryptography/hazmat/backends/openssl/asn1.py | 9 | ||||
-rw-r--r-- | cryptography/hazmat/backends/openssl/bignum.py | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/cryptography/hazmat/backends/openssl/asn1.py b/cryptography/hazmat/backends/openssl/asn1.py index b56932fa..385c5e8c 100644 --- a/cryptography/hazmat/backends/openssl/asn1.py +++ b/cryptography/hazmat/backends/openssl/asn1.py @@ -16,7 +16,14 @@ INCLUDES = """ """ TYPES = """ -typedef ... time_t; +/* + * XXX This typedef is wrong. + * https://bitbucket.org/cffi/cffi/issue/69/support-for-using-typedef-with-primitive + * http://paste.pound-python.org/show/iJcTUMkKeBeS6yXpZWUU/ + * < fijal> exarkun: I think you want to declare your value too large (e.g. long) + * < fijal> exarkun: that way you'll never pass garbage + */ +typedef long time_t; typedef int ASN1_BOOLEAN; typedef ... ASN1_INTEGER; diff --git a/cryptography/hazmat/backends/openssl/bignum.py b/cryptography/hazmat/backends/openssl/bignum.py index 68d0c3a2..4885d5b4 100644 --- a/cryptography/hazmat/backends/openssl/bignum.py +++ b/cryptography/hazmat/backends/openssl/bignum.py @@ -17,7 +17,14 @@ INCLUDES = """ TYPES = """ typedef ... BIGNUM; -typedef ... BN_ULONG; +/* + * XXX This typedef is wrong. + * https://bitbucket.org/cffi/cffi/issue/69/support-for-using-typedef-with-primitive + * http://paste.pound-python.org/show/iJcTUMkKeBeS6yXpZWUU/ + * < fijal> exarkun: I think you want to declare your value too large (e.g. long) + * < fijal> exarkun: that way you'll never pass garbage + */ +typedef unsigned long long BN_ULONG; """ FUNCTIONS = """ |