We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a82f7e commit b7ddbc8Copy full SHA for b7ddbc8
Misc/NEWS
@@ -16,6 +16,8 @@ Core and Builtins
16
Library
17
-------
18
19
+- Load SSL's error strings in hashlib.
20
+
21
- Issue #18527: Upgrade internal copy of zlib to 1.2.8.
22
23
- Issue #19274: Add a filterfunc parameter to PyZipFile.writepy.
Modules/_hashopenssl.c
@@ -847,6 +847,7 @@ PyInit__hashlib(void)
847
PyObject *m, *openssl_md_meth_names;
848
849
OpenSSL_add_all_digests();
850
+ ERR_load_crypto_strings();
851
852
/* TODO build EVP_functions openssl_* entries dynamically based
853
* on what hashes are supported rather than listing many
0 commit comments