8000 gh-128657: fix _hashopenssl ref/data race by tom-pytel · Pull Request #128886 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-128657: fix _hashopenssl ref/data race #128886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Feb 8, 2025
Prev Previous commit
Next Next commit
nit picked
  • Loading branch information
tom-pytel committed Jan 16, 2025
commit 01f498eb928532e0abae59790ee3311f009339be
4 changes: 2 additions & 2 deletions Modules/_hashopenssl.c 9621
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
#include <stdbool.h>
#include "Python.h"
#include "pycore_hashtable.h"
#include "pycore_strhex.h" // _Py_strhex()
#include "pycore_strhex.h" // _Py_strhex()
#include "pycore_pyatomic_ft_wrappers.h" // FT_ATOMIC_LOAD_PTR_RELAXED
#include "hashlib.h"

/* EVP is the preferred interface to hashing in OpenSSL */
#include <openssl/evp.h>
#include <openssl/hmac.h>
#include <openssl/crypto.h> // FIPS_mode()
#include <openssl/crypto.h> // FIPS_mode()
/* We use the object interface to discover what hashes OpenSSL supports. */
#include <openssl/objects.h>
#include <openssl/err.h>
Expand Down
Loading
0