diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2019-02-26 00:48:11 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-02-26 13:48:11 +0800 |
commit | 75a7a36abb4165ff33482a1f22be5da0b83b63df (patch) | |
tree | a0ec1be8c2710b8c9005a3cdfe76032b03ec151c /src/_cffi_src/openssl | |
parent | 857b90dda53a4341ec16a7f2c4c7556af6a8c732 (diff) | |
download | cryptography-75a7a36abb4165ff33482a1f22be5da0b83b63df.tar.gz cryptography-75a7a36abb4165ff33482a1f22be5da0b83b63df.tar.bz2 cryptography-75a7a36abb4165ff33482a1f22be5da0b83b63df.zip |
Remove unused bindings from aes.py (#4772)
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/aes.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/_cffi_src/openssl/aes.py b/src/_cffi_src/openssl/aes.py index 028c92ce..5c9dee6d 100644 --- a/src/_cffi_src/openssl/aes.py +++ b/src/_cffi_src/openssl/aes.py @@ -9,12 +9,7 @@ INCLUDES = """ """ TYPES = """ -static const int Cryptography_HAS_AES_WRAP; - -struct aes_key_st { - ...; -}; -typedef struct aes_key_st AES_KEY; +typedef ... AES_KEY; """ FUNCTIONS = """ @@ -28,5 +23,4 @@ int AES_unwrap_key(AES_KEY *, const unsigned char *, unsigned char *, """ CUSTOMIZATIONS = """ -static const long Cryptography_HAS_AES_WRAP = 1; """ |