Home
last modified time | relevance | path

Searched refs:post_handshake_auth (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_ssl.py4261 self.assertEqual(ctx.post_handshake_auth, False)
4263 ctx.post_handshake_auth = True
4264 self.assertEqual(ctx.post_handshake_auth, True)
4268 self.assertEqual(ctx.post_handshake_auth, True)
4270 ctx.post_handshake_auth = False
4272 self.assertEqual(ctx.post_handshake_auth, False)
4275 ctx.post_handshake_auth = True
4277 self.assertEqual(ctx.post_handshake_auth, True)
4281 server_context.post_handshake_auth = True
4283 client_context.post_handshake_auth = True
[all …]
/external/python/cpython3/Modules/
D_ssl.c425 int post_handshake_auth; member
2932 if (self->post_handshake_auth) in _set_verify_mode()
3119 self->post_handshake_auth = 0; in _ssl__SSLContext_impl()
3120 SSL_CTX_set_post_handshake_auth(self->ctx, self->post_handshake_auth); in _ssl__SSLContext_impl()
3622 return PyBool_FromLong(self->post_handshake_auth); in get_post_handshake_auth()
3642 self->post_handshake_auth = pha; in set_post_handshake_auth()
/external/python/cpython3/Misc/NEWS.d/
D3.7.1rc1.rst335 Add SSLContext.post_handshake_auth and
/external/python/cpython3/Doc/library/
Dssl.rst1322 :attr:`SSLContext.post_handshake_auth`.
1956 .. attribute:: SSLContext.post_handshake_auth
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1362 Added :attr:`SSLContext.post_handshake_auth` to enable and