Home
last modified time | relevance | path

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

/third_party/python/Lib/http/
Dclient.py1426 if context.post_handshake_auth is not None:
1427 context.post_handshake_auth = True
1438 if context.post_handshake_auth is not None:
1439 context.post_handshake_auth = True
/third_party/openssl/ssl/statem/
Dstatem_srvr.c129 && s->post_handshake_auth == SSL_PHA_REQUESTED) { in ossl_statem_server13_read_transition()
376 || s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) in send_certificate_request()
435 if (s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) { in ossl_statem_server13_write_transition()
474 if (s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) { in ossl_statem_server13_write_transition()
475 s->post_handshake_auth = SSL_PHA_REQUESTED; in ossl_statem_server13_write_transition()
503 if (s->post_handshake_auth == SSL_PHA_REQUESTED) { in ossl_statem_server13_write_transition()
504 s->post_handshake_auth = SSL_PHA_EXT_RECEIVED; in ossl_statem_server13_write_transition()
971 if (s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) { in ossl_statem_server_post_work()
2854 if (s->post_handshake_auth == SSL_PHA_REQUEST_PENDING) { in tls_construct_certificate_request()
3738 if (s->post_handshake_auth == SSL_PHA_REQUESTED) { in tls_process_client_certificate()
Dstatem_lib.c539 if (!s->server && s->post_handshake_auth != SSL_PHA_REQUESTED) in tls_construct_finished()
775 if (s->post_handshake_auth != SSL_PHA_REQUESTED) in tls_process_finished()
840 if (s->post_handshake_auth != SSL_PHA_REQUESTED && in tls_process_finished()
1066 && s->post_handshake_auth == SSL_PHA_REQUESTED) in tls_finish_handshake()
1067 s->post_handshake_auth = SSL_PHA_EXT_SENT; in tls_finish_handshake()
Dstatem_clnt.c169 if (!SSL_IS_DTLS(s) && s->post_handshake_auth == SSL_PHA_EXT_SENT) { in ossl_statem_client13_read_transition()
170 s->post_handshake_auth = SSL_PHA_REQUESTED; in ossl_statem_client13_read_transition()
422 if (s->post_handshake_auth == SSL_PHA_REQUESTED) { in ossl_statem_client13_write_transition()
854 if (s->post_handshake_auth != SSL_PHA_REQUESTED) { in ossl_statem_client_post_work()
2569 if (SSL_IS_TLS13(s) && s->post_handshake_auth != SSL_PHA_REQUESTED) in tls_process_certificate_request()
3483 if (s->post_handshake_auth == SSL_PHA_REQUESTED) { in tls_prepare_client_certificate()
3532 if (s->post_handshake_auth == SSL_PHA_REQUESTED) in tls_prepare_client_certificate()
Dextensions.c1728 s->post_handshake_auth = SSL_PHA_NONE; in init_post_handshake_auth()
Dextensions_srvr.c1301 s->post_handshake_auth = SSL_PHA_EXT_RECEIVED; in tls_parse_ctos_post_handshake_auth()
Dextensions_clnt.c1210 s->post_handshake_auth = SSL_PHA_EXT_SENT; in tls_construct_ctos_post_handshake_auth()
/third_party/python/Lib/test/
Dtest_ssl.py4454 self.assertEqual(ctx.post_handshake_auth, False)
4456 ctx.post_handshake_auth = True
4457 self.assertEqual(ctx.post_handshake_auth, True)
4461 self.assertEqual(ctx.post_handshake_auth, True)
4463 ctx.post_handshake_auth = False
4465 self.assertEqual(ctx.post_handshake_auth, False)
4468 ctx.post_handshake_auth = True
4470 self.assertEqual(ctx.post_handshake_auth, True)
4474 server_context.post_handshake_auth = True
4476 client_context.post_handshake_auth = True
[all …]
Dtest_httplib.py1870 self.assertTrue(h._context.post_handshake_auth)
1873 self.assertFalse(context.post_handshake_auth)
1876 self.assertFalse(h._context.post_handshake_auth)
1883 self.assertTrue(h._context.post_handshake_auth)
/third_party/python/Modules/
D_ssl.c291 int post_handshake_auth; member
853 if (sslctx->post_handshake_auth == 1) { in newPySSLSocket()
3165 self->post_handshake_auth = 0; in _ssl__SSLContext_impl()
3166 SSL_CTX_set_post_handshake_auth(self->ctx, self->post_handshake_auth); in _ssl__SSLContext_impl()
3660 return PyBool_FromLong(self->post_handshake_auth); in get_post_handshake_auth()
3678 self->post_handshake_auth = pha; in set_post_handshake_auth()
/third_party/mbedtls/docs/architecture/
Dtls13-support.md79 | post_handshake_auth | no | no |
/third_party/openssl/test/
Dhandshake_helper.c997 peer->ssl->post_handshake_auth = SSL_PHA_EXT_RECEIVED; in do_reneg_setup_step()
/third_party/openssl/ssl/
Dssl_lib.c5637 switch (ssl->post_handshake_auth) { in SSL_verify_client_post_handshake()
5655 ssl->post_handshake_auth = SSL_PHA_REQUEST_PENDING; in SSL_verify_client_post_handshake()
5659 ssl->post_handshake_auth = SSL_PHA_EXT_RECEIVED; /* restore on error */ in SSL_verify_client_post_handshake()
Dssl_local.h1414 SSL_PHA_STATE post_handshake_auth; member
/third_party/python/Doc/library/
Dhttp.client.rst99 :attr:`ssl.SSLContext.post_handshake_auth` for the default *context* or
Dssl.rst1382 :attr:`SSLContext.post_handshake_auth`.
2017 .. attribute:: SSLContext.post_handshake_auth
/third_party/python/Doc/whatsnew/
D3.8.rst1181 Added :attr:`~ssl.SSLContext.post_handshake_auth` to enable and
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst2740 SSLContext.post_handshake_auth = True no longer sets
D3.8.0a1.rst3101 Add SSLContext.post_handshake_auth and