/third_party/openssl/test/helpers/ |
D | handshake.h | 86 HANDSHAKE_RESULT *do_handshake(SSL_CTX *server_ctx, SSL_CTX *server2_ctx,
|
D | handshake.c | 1720 HANDSHAKE_RESULT *do_handshake(SSL_CTX *server_ctx, SSL_CTX *server2_ctx, in do_handshake() function
|
/third_party/python/Lib/ |
D | ssl.py | 972 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/ |
D | test_sslproto.py | 45 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
|
D | functional.py | 142 ssl_sock.do_handshake()
|
/third_party/mbedtls/programs/ssl/ |
D | ssl_mail_client.c | 172 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/ |
D | sslproto.py | 105 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/ |
D | test_ssl.py | 1863 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 …]
|
D | test_poplib.py | 180 self.socket.do_handshake()
|
D | test_ftplib.py | 345 self.socket.do_handshake()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
D | mod.rs | 1299 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/ |
D | ssl_test.c | 518 result = do_handshake(server_ctx, server2_ctx, client_ctx, in test_handshake()
|
/third_party/python/Doc/library/ |
D | ssl.rst | 1217 .. 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/ |
D | mod.rs | 3376 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/ |
D | CHANGELOG.md | 206 * Added `SslStream::{read_early_data, write_early_data, connect, accept, do_handshake, stateless}`.
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1814 The :meth:`SSLSocket.do_handshake() <ssl.SSLSocket.do_handshake>`,
|
D | 3.4.rst | 2360 * :meth:`ssl.SSLSocket.getpeercert` and :meth:`ssl.SSLSocket.do_handshake`
|
/third_party/python/Misc/ |
D | HISTORY | 5015 - Issue #13721: SSLSocket.getpeercert() and SSLSocket.do_handshake() now 13504 - The do_handshake() method of SSL objects now adjusts the blocking mode of the
|