diff options
author | Grant Ramsay <grant.ramsay@hotmail.com> | 2023-07-14 07:10:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-14 07:10:54 (GMT) |
commit | 21d98be42289369ccfbdcc38574cb9ab50ce1c02 (patch) | |
tree | 3f61dfa3a21a0630fcbf39b91dc1940fed0bd8b7 /Misc | |
parent | 490295d651d04ec3b3eff2a2cda7501191bad78a (diff) | |
download | cpython-21d98be42289369ccfbdcc38574cb9ab50ce1c02.zip cpython-21d98be42289369ccfbdcc38574cb9ab50ce1c02.tar.gz cpython-21d98be42289369ccfbdcc38574cb9ab50ce1c02.tar.bz2 |
gh-105293: Do not call SSL_CTX_set_session_id_context on client side SSL context (#105295)
* gh-105293: Do not call SSL_CTX_set_session_id_context on client side SSL context
Openssl states this is a "server side only" operation.
Calling this on a client side socket can result in unexpected behavior
* Add news entry on SSL "set session id context" changes
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-07-14-14-53-58.gh-issue-105293.kimf_i.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-07-14-14-53-58.gh-issue-105293.kimf_i.rst b/Misc/NEWS.d/next/Library/2023-07-14-14-53-58.gh-issue-105293.kimf_i.rst new file mode 100644 index 0000000..c263c85 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-07-14-14-53-58.gh-issue-105293.kimf_i.rst @@ -0,0 +1,2 @@ +Remove call to ``SSL_CTX_set_session_id_context`` during client side context +creation in the :mod:`ssl` module. |