summaryrefslogtreecommitdiff
path: root/src/_cffi_src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-02-16 08:58:55 -0500
committerGitHub <noreply@github.com>2023-02-16 07:58:55 -0600
commita4fdc2b04fffa9afcd7fa076fe1386fb84da4460 (patch)
tree80e91b1ad9ec67b6854838b0308795998faee62d /src/_cffi_src
parent2436fba413090d1bb455acf54b9932e5ae955cac (diff)
downloadcryptography-a4fdc2b04fffa9afcd7fa076fe1386fb84da4460.tar.gz
remove two bindings functions that were unused (#8304)
just sort of sitting there
Diffstat (limited to 'src/_cffi_src')
-rw-r--r--src/_cffi_src/openssl/evp.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/_cffi_src/openssl/evp.py b/src/_cffi_src/openssl/evp.py
index 357de2924..46301ecbb 100644
--- a/src/_cffi_src/openssl/evp.py
+++ b/src/_cffi_src/openssl/evp.py
@@ -171,13 +171,6 @@ const long Cryptography_HAS_EVP_PKEY_DHX = 0;
const long EVP_PKEY_DHX = -1;
#endif
-EVP_MD_CTX *Cryptography_EVP_MD_CTX_new(void) {
- return EVP_MD_CTX_new();
-}
-void Cryptography_EVP_MD_CTX_free(EVP_MD_CTX *md) {
- EVP_MD_CTX_free(md);
-}
-
#if CRYPTOGRAPHY_IS_LIBRESSL || CRYPTOGRAPHY_OPENSSL_300_OR_GREATER || \
CRYPTOGRAPHY_IS_BORINGSSL
static const int Cryptography_HAS_EVP_PKEY_set_alias_type = 0;