Home
last modified time | relevance | path

Searched refs:BIO_do_handshake (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DBIO_f_ssl.pod5 BIO_do_handshake,
34 long BIO_do_handshake(BIO *b);
97 BIO_do_handshake() attempts to complete an SSL handshake on the
126 Applications do not have to call BIO_do_handshake() but may wish
132 BIO_get_num_renegotiates(), and BIO_do_handshake() are implemented as macros.
147 BIO_do_handshake() returns 1 if the connection was established successfully.
264 if (BIO_do_handshake(sbio) <= 0) {
/freebsd/crypto/openssl/include/openssl/
H A Dbio.h481 # define BIO_do_connect(b) BIO_do_handshake(b)
482 # define BIO_do_accept(b) BIO_do_handshake(b)
484 # define BIO_do_handshake(b) BIO_ctrl(b,BIO_C_DO_STATE_MACHINE,0,NULL) macro
H A Dbio.h.in458 # define BIO_do_connect(b) BIO_do_handshake(b)
459 # define BIO_do_accept(b) BIO_do_handshake(b)
461 # define BIO_do_handshake(b) BIO_ctrl(b,BIO_C_DO_STATE_MACHINE,0,NULL) macro
/freebsd/crypto/openssl/util/
H A Dother.syms159 BIO_do_handshake define
/freebsd/crypto/openssl/apps/
H A Ds_server.c3569 i = BIO_do_handshake(io); in rev_body()
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile792 MLINKS+= BIO_f_ssl.3 BIO_do_handshake.3
/freebsd/crypto/openssl/
H A DCHANGES.md1663 * `BIO_do_connect()` and `BIO_do_handshake()` have been extended: