diff options
author | Christian Heimes <christian@python.org> | 2018-09-18 14:38:58 +0200 |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-09-18 05:38:58 -0700 |
commit | cb5778f00ce48631c7140f33ba242496aaf7102b (patch) | |
tree | 9905106a1ee7ce94d9fa93b6ac395634c2f24c2f /Include/pyexpat.h | |
parent | bpo-33721: Make some os.path functions and pathlib.Path methods be tolerant ... (diff) | |
download | cpython-cb5778f00ce48631c7140f33ba242496aaf7102b.tar.gz cpython-cb5778f00ce48631c7140f33ba242496aaf7102b.tar.bz2 cpython-cb5778f00ce48631c7140f33ba242496aaf7102b.zip |
bpo-34623: Use XML_SetHashSalt in _elementtree (GH-9146)
The C accelerated _elementtree module now initializes hash randomization
salt from _Py_HashSecret instead of libexpat's default CPRNG.
Signed-off-by: Christian Heimes <christian@python.org>
https://bugs.python.org/issue34623
Diffstat (limited to 'Include/pyexpat.h')
-rw-r--r-- | Include/pyexpat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/pyexpat.h b/Include/pyexpat.h index 44259bf6d71..07020b5dc96 100644 --- a/Include/pyexpat.h +++ b/Include/pyexpat.h @@ -3,7 +3,7 @@ /* note: you must import expat.h before importing this module! */ -#define PyExpat_CAPI_MAGIC "pyexpat.expat_CAPI 1.0" +#define PyExpat_CAPI_MAGIC "pyexpat.expat_CAPI 1.1" #define PyExpat_CAPSULE_NAME "pyexpat.expat_CAPI" struct PyExpat_CAPI @@ -48,6 +48,8 @@ struct PyExpat_CAPI enum XML_Status (*SetEncoding)(XML_Parser parser, const XML_Char *encoding); int (*DefaultUnknownEncodingHandler)( void *encodingHandlerData, const XML_Char *name, XML_Encoding *info); + /* might be none for expat < 2.1.0 */ + int (*SetHashSalt)(XML_Parser parser, unsigned long hash_salt); /* always add new stuff to the end! */ }; |