-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
ssl.SSLSocket.shared_ciphers always returns server cipher list #96931
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
Comments
Yhg1s
pushed a commit
that referenced
this issue
Mar 22, 2023
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Mar 22, 2023
…pythonGH-96932) (cherry picked from commit af9c34f) Co-authored-by: Benjamin Fogle <[email protected]>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Mar 22, 2023
…pythonGH-96932) (cherry picked from commit af9c34f) Co-authored-by: Benjamin Fogle <[email protected]>
Fidget-Spinner
pushed a commit
to Fidget-Spinner/cpython
that referenced
this issue
Mar 27, 2023
warsaw
pushed a commit
to warsaw/cpython
that referenced
this issue
Apr 11, 2023
stormi
pushed a commit
to xcp-ng-rpms/python-urllib3
that referenced
this issue
Feb 13, 2025
…ers() in CPython See: python/cpython#96931 Fixes: rhbz#2203773
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bug report
The function
ssl.SSLSocket.shared_ciphers
always returns the server's cipher list, rather than the ciphers common to both client and server. I.e., the same list asssl.SSLContext.get_ciphers
, in a different format.This is due to the use of
SSL_get_ciphers
in the implementation, rather thanSSL_get_shared_ciphers
.Your environment
Linked PRs
The text was updated successfully, but these errors were encountered: