From 75a7a36abb4165ff33482a1f22be5da0b83b63df Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 26 Feb 2019 00:48:11 -0500 Subject: Remove unused bindings from aes.py (#4772) --- src/_cffi_src/openssl/aes.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/_cffi_src/openssl/aes.py') 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; """ -- cgit v1.2.3