Home
last modified time | relevance | path

Searched refs:SSL_do_handshake (Results 1 – 25 of 33) sorted by relevance

12

/third_party/openssl/doc/man3/
DSSL_do_handshake.pod5 SSL_do_handshake - perform a TLS/SSL handshake
11 int SSL_do_handshake(SSL *ssl);
15 SSL_do_handshake() will wait for a SSL/TLS handshake to take place. If the
23 The behaviour of SSL_do_handshake() depends on the underlying BIO.
25 If the underlying BIO is B<blocking>, SSL_do_handshake() will only return
28 If the underlying BIO is B<nonblocking>, SSL_do_handshake() will also return
29 when the underlying BIO could not satisfy the needs of SSL_do_handshake()
31 return value of SSL_do_handshake() will yield B<SSL_ERROR_WANT_READ> or
33 taking appropriate action to satisfy the needs of SSL_do_handshake().
DSSL_CTX_set_num_tickets.pod55 SSL_do_handshake(). SSL_new_session_ticket() can be called more than once to
58 SSL_do_handshake(). Note that a successful return from
DSSL_key_update.pod38 or SSL_write_ex() takes place on the connection. Alternatively SSL_do_handshake()
95 L<SSL_do_handshake(3)>
DSSL_read_early_data.pod103 L<SSL_write_ex(3)>, L<SSL_read_ex(3)>, L<SSL_connect(3)>, L<SSL_do_handshake(3)>
116 L<SSL_do_handshake(3)>. Alternatively you can call a standard write function
132 L<SSL_write_ex(3)>, L<SSL_read_ex(3)>, L<SSL_accept(3)>, L<SSL_do_handshake(3)>,
176 as L<SSL_accept(3)> or L<SSL_do_handshake(3)>. Alternatively you can call a
358 L<SSL_do_handshake(3)>,
DSSL_set_connect_state.pod65 L<SSL_do_handshake(3)>,
DSSL_accept.pod70 L<SSL_do_handshake(3)>,
DSSL_connect.pod85 L<SSL_do_handshake(3)>,
DSSL_get_error.pod16 statement) for a preceding call to SSL_connect(), SSL_accept(), SSL_do_handshake(),
DSSL_CTX_set_verify.pod212 sent to the client, this can be done with SSL_do_handshake() or SSL_write_ex().
/third_party/openssl/test/
Dbad_dtls_test.c534 ret = SSL_do_handshake(con); in test_bad_dtls()
541 ret = SSL_do_handshake(con); in test_bad_dtls()
548 ret = SSL_do_handshake(con); in test_bad_dtls()
554 ret = SSL_do_handshake(con); in test_bad_dtls()
Dsslapitest.c2248 if (!TEST_int_eq(SSL_do_handshake(sssl), 1) in post_handshake_verify()
2595 || !TEST_true(SSL_do_handshake(serverssl)) in test_extra_tickets()
2628 || !TEST_true(SSL_do_handshake(serverssl)) in test_extra_tickets()
2642 if (!TEST_true(SSL_do_handshake(serverssl)) in test_extra_tickets()
5935 || !TEST_int_eq(SSL_do_handshake(clientssl), 1)) in test_serverinfo_custom()
6228 || !TEST_true(SSL_do_handshake(clientssl))) in test_key_update()
6288 || !TEST_int_eq(SSL_do_handshake(peerupdate), 1)) in test_key_update_peer_in_write()
6486 || !TEST_int_eq(SSL_do_handshake(local), 1)) in test_key_update_local_in_write()
6563 || !TEST_int_eq(SSL_do_handshake(local), 1)) in test_key_update_local_in_read()
6801 if (!TEST_int_eq(SSL_do_handshake(serverssl), 1)) in test_pha_key_update()
/third_party/nghttp2/src/
Dshrpx_connection.cc415 rv = SSL_do_handshake(tls.ssl); in tls_handshake()
458 rv = SSL_do_handshake(tls.ssl); in tls_handshake()
465 rv = SSL_do_handshake(tls.ssl); in tls_handshake()
626 rv = SSL_do_handshake(tls.ssl); in tls_handshake_simple()
663 rv = SSL_do_handshake(tls.ssl); in tls_handshake_simple()
670 rv = SSL_do_handshake(tls.ssl); in tls_handshake_simple()
/third_party/openssl/fuzz/
Dclient.c88 if (SSL_do_handshake(client) == 1) { in FuzzerTestOneInput()
Dserver.c640 if (SSL_do_handshake(server) == 1) { in FuzzerTestOneInput()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/library/
Dssl_lib.c390 int SSL_do_handshake(SSL *ssl) in SSL_do_handshake() function
408 return SSL_do_handshake(ssl); in SSL_connect()
418 return SSL_do_handshake(ssl); in SSL_accept()
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/openssl/
Dssl.h451 int SSL_do_handshake(SSL *ssl);
/third_party/openssl/apps/
Ds_server.c2615 i = SSL_do_handshake(con); in sv_body()
2625 i = SSL_do_handshake(con); in sv_body()
2635 i = SSL_do_handshake(con); in sv_body()
2647 i = SSL_do_handshake(con); in sv_body()
3180 i = SSL_do_handshake(con); in www_body()
/third_party/openssl/ssl/
Dbio_ssl.c347 ret = (int)SSL_do_handshake(ssl); in ssl_ctrl()
Dssl_lib.c1749 return SSL_do_handshake(s); in SSL_accept()
1759 return SSL_do_handshake(s); in SSL_connect()
3915 int SSL_do_handshake(SSL *s) in SSL_do_handshake() function
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dssl.rs712 pub fn SSL_do_handshake(ssl: *mut SSL) -> c_int; in SSL_do_handshake() function
/third_party/gstreamer/gstplugins_bad/ext/dtls/
Dgstdtlsconnection.c1050 ret = SSL_do_handshake (self->priv->ssl); in openssl_poll()
/third_party/openssl/util/
Dlibssl.num204 SSL_do_handshake 205 3_0_0 EXIST::FUNCTION:
/third_party/openssl/test/helpers/
Dhandshake.c771 int ret = SSL_do_handshake(peer->ssl); in do_handshake_step()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs3546 #[corresponds(SSL_do_handshake)]
3548 let ret = unsafe { ffi::SSL_do_handshake(self.ssl.as_ptr()) }; in do_handshake()
/third_party/openssl/doc/
Dbuild.info2398 DEPEND[html/man3/SSL_do_handshake.html]=man3/SSL_do_handshake.pod
2399 GENERATE[html/man3/SSL_do_handshake.html]=man3/SSL_do_handshake.pod
2400 DEPEND[man/man3/SSL_do_handshake.3]=man3/SSL_do_handshake.pod
2401 GENERATE[man/man3/SSL_do_handshake.3]=man3/SSL_do_handshake.pod
3337 html/man3/SSL_do_handshake.html \
3933 man/man3/SSL_do_handshake.3 \

12