Home
last modified time | relevance | path

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

/src/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
/src/secure/lib/libssl/
H A DVersion.map483 SSL_key_update;
/src/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
/src/crypto/openssl/test/
H A Dsslapitest.c6863 if (!TEST_true(SSL_key_update(clientssl, in test_key_update()
6926 if (!TEST_true(SSL_key_update(peerupdate, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_peer_in_write()
7031 if (!TEST_true(SSL_key_update(local, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_peer_in_read()
7123 if (!TEST_false(SSL_key_update(local, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_local_in_write()
7133 if (!TEST_true(SSL_key_update(local, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_local_in_write()
7210 if (!TEST_true(SSL_key_update(local, SSL_KEY_UPDATE_REQUESTED)) in test_key_update_local_in_read()
7503 if (!TEST_true(SSL_key_update(clientssl, SSL_KEY_UPDATE_NOT_REQUESTED))) in test_pha_key_update()
8900 && !TEST_true(SSL_key_update(serverssl, in test_shutdown()
11419 if (!TEST_true(SSL_key_update(clientssl, SSL_KEY_UPDATE_NOT_REQUESTED))) in test_read_ahead_key_change()
H A Dquic_multistream_test.c426 if (!TEST_true(SSL_key_update(h->c_conn, SSL_KEY_UPDATE_REQUESTED))) in trigger_key_update()
/src/crypto/openssl/util/
H A Dlibssl.num416 SSL_key_update 417 3_0_0 EXIST::FUNCTION:
/src/crypto/openssl/test/helpers/
H A Dhandshake.c978 ret = SSL_key_update(peer->ssl, test_ctx->key_update_type); in do_reneg_setup_step()
/src/secure/lib/libcrypto/man/man3/
H A DMakefile567 MAN+= SSL_key_update.3
4508 MLINKS+= SSL_key_update.3 SSL_get_key_update_type.3
4509 MLINKS+= SSL_key_update.3 SSL_renegotiate.3
4510 MLINKS+= SSL_key_update.3 SSL_renegotiate_abbreviated.3
4511 MLINKS+= SSL_key_update.3 SSL_renegotiate_pending.3
/src/crypto/openssl/doc/
H A Dbuild.info2742 DEPEND[html/man3/SSL_key_update.html]=man3/SSL_key_update.pod
2743 GENERATE[html/man3/SSL_key_update.html]=man3/SSL_key_update.pod
2744 DEPEND[man/man3/SSL_key_update.3]=man3/SSL_key_update.pod
2745 GENERATE[man/man3/SSL_key_update.3]=man3/SSL_key_update.pod
3749 html/man3/SSL_key_update.html \
4425 man/man3/SSL_key_update.3 \
/src/crypto/openssl/apps/
H A Ds_server.c2844SSL_key_update(con, buf[0] == 'K' ? SSL_KEY_UPDATE_REQUESTED : SSL_KEY_UPDATE_NOT_REQUESTED); in sv_body()
H A Ds_client.c3963 if (!SSL_key_update(user_data->con, updatetype)) in user_data_execute()
/src/crypto/openssl/include/openssl/
H A Dssl.h2116 int SSL_key_update(SSL *s, int updatetype);
H A Dssl.h.in2069 int SSL_key_update(SSL *s, int updatetype);
/src/crypto/openssl/ssl/
H A Dssl_lib.c2802 int SSL_key_update(SSL *s, int updatetype) in SSL_key_update() function