summaryrefslogtreecommitdiff
path: root/src/_cffi_src/openssl
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-04-23 16:27:01 -0600
committerGitHub <noreply@github.com>2023-04-23 22:27:01 +0000
commit085c373fb6e610f0939223c62f32f9eb643f7ab2 (patch)
treeead3757e1e8aacc4b9568a1bc1de1a40e5d2e392 /src/_cffi_src/openssl
parenta7abb5b2f684eb019e837bd8ec50a1adccfc841f (diff)
downloadcryptography-085c373fb6e610f0939223c62f32f9eb643f7ab2.tar.gz
Remove HMAC bindings (#8801)
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r--src/_cffi_src/openssl/hmac.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/_cffi_src/openssl/hmac.py b/src/_cffi_src/openssl/hmac.py
deleted file mode 100644
index 8fbc2b411..000000000
--- a/src/_cffi_src/openssl/hmac.py
+++ /dev/null
@@ -1,26 +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.
-
-from __future__ import annotations
-
-INCLUDES = """
-#include <openssl/hmac.h>
-"""
-
-TYPES = """
-typedef ... HMAC_CTX;
-"""
-
-FUNCTIONS = """
-int HMAC_Init_ex(HMAC_CTX *, const void *, int, const EVP_MD *, ENGINE *);
-int HMAC_Update(HMAC_CTX *, const unsigned char *, size_t);
-int HMAC_Final(HMAC_CTX *, unsigned char *, unsigned int *);
-int HMAC_CTX_copy(HMAC_CTX *, HMAC_CTX *);
-
-HMAC_CTX *HMAC_CTX_new(void);
-void HMAC_CTX_free(HMAC_CTX *ctx);
-"""
-
-CUSTOMIZATIONS = """
-"""