summaryrefslogtreecommitdiff
path: root/src/_cffi_src
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2021-10-10 20:35:50 +0800
committerGitHub <noreply@github.com>2021-10-10 08:35:50 -0400
commit87f1f3a2c16b98264a87943b113c330065441cc7 (patch)
tree63e2dcb5ad72cf3cceaa4e7e0c7d309dffed46fe /src/_cffi_src
parent4d5f0f0ea81705e6ccaa347ba018cddf1b60ef67 (diff)
downloadcryptography-87f1f3a2c16b98264a87943b113c330065441cc7.tar.gz
remove low level aes bindings that are no longer necessary (#6399)
Diffstat (limited to 'src/_cffi_src')
-rw-r--r--src/_cffi_src/build_openssl.py1
-rw-r--r--src/_cffi_src/openssl/aes.py22
2 files changed, 0 insertions, 23 deletions
diff --git a/src/_cffi_src/build_openssl.py b/src/_cffi_src/build_openssl.py
index 04d6d4611..2ee3f4bff 100644
--- a/src/_cffi_src/build_openssl.py
+++ b/src/_cffi_src/build_openssl.py
@@ -81,7 +81,6 @@ ffi = build_ffi_for_binding(
"cryptography",
# Provider comes early as well so we define OSSL_LIB_CTX
"provider",
- "aes",
"asn1",
"bignum",
"bio",
diff --git a/src/_cffi_src/openssl/aes.py b/src/_cffi_src/openssl/aes.py
deleted file mode 100644
index 55f19fd56..000000000
--- a/src/_cffi_src/openssl/aes.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# This file is dual licensed under the terms of the Apache License, Version
-# 2.0, and the BSD License. See the LICENSE file in the root of this repository
-# for complete details.
-
-
-INCLUDES = """
-#include <openssl/aes.h>
-"""
-
-TYPES = """
-typedef ... AES_KEY;
-"""
-
-FUNCTIONS = """
-int AES_wrap_key(AES_KEY *, const unsigned char *, unsigned char *,
- const unsigned char *, unsigned int);
-int AES_unwrap_key(AES_KEY *, const unsigned char *, unsigned char *,
- const unsigned char *, unsigned int);
-"""
-
-CUSTOMIZATIONS = """
-"""