aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/hmac.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/_cffi_src/openssl/hmac.py')
-rw-r--r--src/_cffi_src/openssl/hmac.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/_cffi_src/openssl/hmac.py b/src/_cffi_src/openssl/hmac.py
index 610e32a6..42e5cfb6 100644
--- a/src/_cffi_src/openssl/hmac.py
+++ b/src/_cffi_src/openssl/hmac.py
@@ -103,10 +103,6 @@ void Cryptography_HMAC_CTX_free(HMAC_CTX *ctx) {
return HMAC_CTX_free(ctx);
#else
if (ctx != NULL) {
- ctx->md = NULL;
- ctx->key_length = 0;
- memset(ctx->key, 0, sizeof(HMAC_MAX_MD_CBLOCK));
-
HMAC_CTX_cleanup(ctx);
OPENSSL_free(ctx);
}