Uh oh!
There was an error while loading. Please reload this page.
bpo-34271: Add ssl debugging helpers (GH-10031) - #10031
Conversation
jmfrank63
commented
Oct 24, 2018
I made a first test setting the env variable |
tiran
commented
Oct 24, 2018
The
I decided against expanding |
jmfrank63
commented
Oct 29, 2018
I wrote some basic examples showing this works very well. Thanks to https://github.com/jmfrank63/ssl-examples/commits?author=nikosgraser for providing the requests example. |
e938b5b to
3f17e9fComparetiran
commented
May 29, 2019
@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 to
8bbb6dfComparetiran
commented
May 30, 2019
@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 TLS protocol messages with a tracing callback. The default and stdlib contexts also support SSLKEYLOGFILE env var.
The msg_callback and related enums are now private members. The feature is 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 TLS protocol messages with a tracing callback. The default and stdlib contexts also support SSLKEYLOGFILE env var. The msg_callback and related enums are private members. The feature is 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 TLS
protocol messages with a tracing callback. The default and stdlib
contexts also support SSLKEYLOGFILE env var.
https://bugs.python.org/issue34271