diff options
author | Maximilian Hils <git@maximilianhils.com> | 2020-07-28 16:31:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 09:31:22 -0500 |
commit | b2bca41bdee8ed315d9f97ef89bdc234defd3b4c (patch) | |
tree | 8f3c5ae89ccbbaca3d534287b6d36a039c4e2151 /tests/test_ssl.py | |
parent | 037371861693f26297320dcd5fd8c221b6d8df26 (diff) | |
download | pyopenssl-git-b2bca41bdee8ed315d9f97ef89bdc234defd3b4c.tar.gz |
Add SSL.Context.set_keylog_callback (#910)
* add SSL.Context.set_keylog_callback
* don't fail on missing attribute
* lint!
* make it black
Diffstat (limited to 'tests/test_ssl.py')
-rw-r--r-- | tests/test_ssl.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/test_ssl.py b/tests/test_ssl.py index ba5b638..a08759f 100644 --- a/tests/test_ssl.py +++ b/tests/test_ssl.py @@ -1001,6 +1001,37 @@ class TestContext(object): [] == notConnections ), "Some info callback arguments were not Connection instances." + @pytest.mark.skipif( + not getattr(_lib, "Cryptography_HAS_KEYLOG", None), + reason="SSL_CTX_set_keylog_callback unavailable", + ) + def test_set_keylog_callback(self): + """ + `Context.set_keylog_callback` accepts a callable which will be + invoked when key material is generated or received. + """ + called = [] + + def keylog(conn, line): + called.append((conn, line)) + + server_context = Context(TLSv1_METHOD) + server_context.set_keylog_callback(keylog) + server_context.use_certificate( + load_certificate(FILETYPE_PEM, cleartextCertificatePEM) + ) + server_context.use_privatekey( + load_privatekey(FILETYPE_PEM, cleartextPrivateKeyPEM) + ) + + client_context = Context(TLSv1_METHOD) + + self._handshake_test(server_context, client_context) + + assert called + assert all(isinstance(conn, Connection) for conn, line in called) + assert all(b"CLIENT_RANDOM" in line for conn, line in called) + def _load_verify_locations_test(self, *args): """ Create a client context which will verify the peer certificate and call |