Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
bpo-34271: Add ssl debugging helpers (GH-10031)#10031
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
jmfrank63 commentedOct 24, 2018
I made a first test setting the env variable |
The
I decided against expanding |
jmfrank63 commentedOct 29, 2018
I wrote some basic examples showing this works very well. Thanks tohttps://github.com/jmfrank63/ssl-examples/commits?author=nikosgraser for providing the requests example. |
e938b5b to3f17e9fCompare@zooba Could you please do me a favor and try the patch on Windows? One of the test cases is failing on Windows and I don't understand why. |
ea3fd14 to8bbb6dfCompare@zooba One Windows test case was failing because |
Uh oh!
There was an error while loading.Please reload this page.
The ssl module now can dump key material to a keylog file and trace TLSprotocol messages with a tracing callback. The default and stdlibcontexts also support SSLKEYLOGFILE env var.
The msg_callback and related enums are now private members. The featureis designed for internal debugging and not for end users.Signed-off-by: Christian Heimes <christian@python.org>
The ssl module now can dump key material to a keylog file and trace TLSprotocol messages with a tracing callback. The default and stdlibcontexts also support SSLKEYLOGFILE env var.The msg_callback and related enums are private members. The featureis designed for internal debugging and not for end users.Signed-off-by: Christian Heimes <christian@python.org>
Uh oh!
There was an error while loading.Please reload this page.
The ssl module now can dump key material to a keylog file and trace TLS
protocol messages with a tracing callback. The default and stdlib
contexts also support SSLKEYLOGFILE env var.
https://bugs.python.org/issue34271