Home
last modified time | relevance | path

Searched refs:do_handshake (Results 1 – 18 of 18) sorted by relevance

/third_party/openssl/test/helpers/
Dhandshake.h86 HANDSHAKE_RESULT *do_handshake(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
Dhandshake.c1720 HANDSHAKE_RESULT *do_handshake(SSL_CTX *server_ctx, SSL_CTX *server2_ctx, in do_handshake() function
/third_party/python/Lib/
Dssl.py972 def do_handshake(self): member in SSLObject
974 self._sslobj.do_handshake()
1070 self.do_handshake()
1335 def do_handshake(self, block=False): member in SSLSocket
1341 self._sslobj.do_handshake()
1365 self.do_handshake()
/third_party/python/Lib/test/test_asyncio/
Dtest_sslproto.py45 def connection_made(self, ssl_proto, *, do_handshake=None): argument
49 if do_handshake:
50 sslpipe.do_handshake.side_effect = do_handshake
54 sslpipe.do_handshake.side_effect = mock_handshake
Dfunctional.py142 ssl_sock.do_handshake()
/third_party/mbedtls/programs/ssl/
Dssl_mail_client.c172 static int do_handshake( mbedtls_ssl_context *ssl ) in do_handshake() function
646 if( do_handshake( &ssl ) != 0 ) in main()
715 if( do_handshake( &ssl ) != 0 ) in main()
/third_party/python/Lib/asyncio/
Dsslproto.py105 def do_handshake(self, callback=None): member in _SSLPipe
188 self._sslobj.do_handshake()
676 ssldata = self._sslpipe.do_handshake(
/third_party/python/Lib/test/
Dtest_ssl.py1863 c.do_handshake()
1964 client.do_handshake()
1970 server.do_handshake()
1976 client.do_handshake()
1977 server.do_handshake()
2056 s.do_handshake()
2173 s.do_handshake()
2317 self.ssl_io_loop(sock, incoming, outgoing, sslobj.do_handshake)
2342 self.ssl_io_loop(sock, incoming, outgoing, sslobj.do_handshake)
2706 self.socket.do_handshake()
[all …]
Dtest_poplib.py180 self.socket.do_handshake()
Dtest_ftplib.py345 self.socket.do_handshake()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs1299 client_stream.do_handshake().unwrap_err(); in stateless()
1306 client_stream.do_handshake().unwrap(); in stateless()
1308 server_stream.do_handshake().unwrap(); in stateless()
/third_party/openssl/test/
Dssl_test.c518 result = do_handshake(server_ctx, server2_ctx, client_ctx, in test_handshake()
/third_party/python/Doc/library/
Dssl.rst1217 .. method:: SSLSocket.do_handshake()
1446 :meth:`~SSLSocket.do_handshake` has been called to reuse a session.
1852 :meth:`SSLSocket.do_handshake` method. Calling
1853 :meth:`SSLSocket.do_handshake` explicitly gives the program control over the
1924 :meth:`SSLSocket.do_handshake`. The context's
2437 :meth:`SSLSocket.do_handshake` method has to be retried until it returns
2443 sock.do_handshake()
2520 - :meth:`~SSLSocket.do_handshake`
2533 call :meth:`~SSLSocket.do_handshake` to start the handshake.
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs3376 match self.stream.do_handshake() { in handshake()
3547 pub fn do_handshake(&mut self) -> Result<(), Error> { in do_handshake() method
3884 match self.inner.do_handshake() { in handshake()
/third_party/rust/crates/rust-openssl/openssl/
DCHANGELOG.md206 * Added `SslStream::{read_early_data, write_early_data, connect, accept, do_handshake, stateless}`.
/third_party/python/Doc/whatsnew/
D3.5.rst1814 The :meth:`SSLSocket.do_handshake() <ssl.SSLSocket.do_handshake>`,
D3.4.rst2360 * :meth:`ssl.SSLSocket.getpeercert` and :meth:`ssl.SSLSocket.do_handshake`
/third_party/python/Misc/
DHISTORY5015 - Issue #13721: SSLSocket.getpeercert() and SSLSocket.do_handshake() now
13504 - The do_handshake() method of SSL objects now adjusts the blocking mode of the