8000 gh-111178: fix UBSan failures in `Modules/_hashopenssl.c` by picnixz · Pull Request #129802 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111178: fix UBSan failures in Modules/_hashopenssl.c #129802

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 26, 2025
Prev Previous commit
Next Next commit
remove unnecessary forward declaration
  • Loading branch information
picnixz committed Feb 25, 2025
commit 30e0c9b237afe4544b13c6956a37d497c7aaa3a8
1 change: 0 additions & 1 deletion Modules/_hashopenssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,6 @@ _hashlib_hmac_singleshot_impl(PyObject *module, Py_buffer *key,
*/

static int _hmac_update(HMACobject*, PyObject*);
static PyObject *_hashlib_hmac_get_name(PyObject *, void *);

/*[clinic input]
_hashlib.hmac_new
Expand Down
0