aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/aes.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/_cffi_src/openssl/aes.py')
-rw-r--r--src/_cffi_src/openssl/aes.py8
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;
"""