Home
last modified time | relevance | path

Searched refs:SSL_key_update (Results 1 – 14 of 14) sorted by relevance

/freebsd/crypto/openssl/doc/man3/
H A DSSL_key_update.pod5 SSL_key_update,
16 int SSL_key_update(SSL *s, int updatetype);
25 SSL_key_update() schedules an update of the keys for the current TLS connection.
34 SSL_key_update() must only be called after the initial handshake has been
84 SSL_key_update() can also be used to perform a key update when using QUIC. The
93 can be performed. SSL_key_update() will fail if these requirements are not met.
101 SSL_key_update(), SSL_renegotiate() and SSL_renegotiate_abbreviated() return 1
118 The SSL_key_update() and SSL_get_key_update_type() functions were added in
/freebsd/secure/lib/libssl/
H A DVersion.map483 SSL_key_update;
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dquic-api-ssl-funcs.md613 | `SSL_key_update` | RL | ��U | ��A | ��QSI | ��Done …
953 ### What should `SSL_key_update` and `SSL_get_key_update_type`?
955 `SSL_key_update` can trigger a TX record layer key update, which will cause the
/freebsd/crypto/openssl/test/
H A Dsslapitest.c6855 if (!TEST_true(SSL_key_update(clientssl, in test_key_update()
6918 if (!TEST_true(SSL_key_update(peerupdate, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_peer_in_write()
7023 if (!TEST_true(SSL_key_update(local, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_peer_in_read()
7115 if (!TEST_false(SSL_key_update(local, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_local_in_write()
7125 if (!TEST_true(SSL_key_update(local, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_local_in_write()
7202 if (!TEST_true(SSL_key_update(local, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_local_in_read()
7496 if (!TEST_true(SSL_key_update(clientssl, SSL_KEY_UPDATE_NOT_REQUESTED))) in test_pha_key_update()
8741 && !TEST_true(SSL_key_update(serverssl, in test_shutdown()
11259 if (!TEST_true(SSL_key_update(clientssl, SSL_KEY_UPDATE_NOT_REQUESTED))) in test_read_ahead_key_change()
H A Dquic_multistream_test.c428 if (!TEST_true(SSL_key_update(h->c_conn, SSL_KEY_UPDATE_REQUESTED))) in trigger_key_update()
/freebsd/crypto/openssl/test/helpers/
H A Dhandshake.c981 ret = SSL_key_update(peer->ssl, test_ctx->key_update_type); in do_reneg_setup_step()
/freebsd/crypto/openssl/util/
H A Dlibssl.num416 SSL_key_update 417 3_0_0 EXIST::FUNCTION:
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile563 MAN+= SSL_key_update.3
4505 MLINKS+= SSL_key_update.3 SSL_get_key_update_type.3
4506 MLINKS+= SSL_key_update.3 SSL_renegotiate.3
4507 MLINKS+= SSL_key_update.3 SSL_renegotiate_abbreviated.3
4508 MLINKS+= SSL_key_update.3 SSL_renegotiate_pending.3
/freebsd/crypto/openssl/doc/
H A Dbuild.info2726 DEPEND[html/man3/SSL_key_update.html]=man3/SSL_key_update.pod
2727 GENERATE[html/man3/SSL_key_update.html]=man3/SSL_key_update.pod
2728 DEPEND[man/man3/SSL_key_update.3]=man3/SSL_key_update.pod
2729 GENERATE[man/man3/SSL_key_update.3]=man3/SSL_key_update.pod
3729 html/man3/SSL_key_update.html \
4401 man/man3/SSL_key_update.3 \
/freebsd/crypto/openssl/apps/
H A Ds_client.c3908 if (!SSL_key_update(user_data->con, updatetype)) in user_data_execute()
H A Ds_server.c2742 SSL_key_update(con, buf[0] == 'K' ? in sv_body()
/freebsd/crypto/openssl/include/openssl/
H A Dssl.h2110 int SSL_key_update(SSL *s, int updatetype);
H A Dssl.h.in2063 int SSL_key_update(SSL *s, int updatetype);
/freebsd/crypto/openssl/ssl/
H A Dssl_lib.c2832 int SSL_key_update(SSL *s, int updatetype) in SSL_key_update() function