Home
last modified time | relevance | path

Searched refs:SSL_CTX_remove_session (Results 1 – 18 of 18) sorted by relevance

/third_party/openssl/doc/man3/
DSSL_CTX_add_session.pod5 SSL_CTX_add_session, SSL_CTX_remove_session - manipulate session cache
13 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c);
22 SSL_CTX_remove_session() removes the session B<c> from the context B<ctx> and
DSSL_CTX_sess_set_get_cb.pod80 L<SSL_CTX_remove_session(3)> after a session has been used.
/third_party/openssl/ssl/
Ds3_msg.c59 SSL_CTX_remove_session(s->session_ctx, s->session); in ssl3_send_alert()
Dssl_sess.c649 SSL_CTX_remove_session(s->session_ctx, ret); in ssl_get_prev_session()
785 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *c) in SSL_CTX_remove_session() function
1192 SSL_CTX_remove_session(s->session_ctx, s->session); in ssl_clear_bad_session()
/third_party/openssl/ssl/record/
Drec_layer_d1.c618 SSL_CTX_remove_session(s->session_ctx, s->session); in dtls1_read_bytes()
Drec_layer_s3.c1605 SSL_CTX_remove_session(s->session_ctx, s->session); in ssl3_read_bytes()
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/
Dssl.rs557 pub fn SSL_CTX_remove_session(ctx: *mut SSL_CTX, session: *mut SSL_SESSION) -> c_int; in SSL_CTX_remove_session() function
/third_party/openssl/util/
Dlibssl.num50 SSL_CTX_remove_session 51 3_0_0 EXIST::FUNCTION:
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs1871 #[corresponds(SSL_CTX_remove_session)]
1873 ffi::SSL_CTX_remove_session(self.as_ptr(), session.as_ptr()) != 0 in remove_session()
/third_party/openssl/ssl/statem/
Dextensions_srvr.c1130 && !SSL_CTX_remove_session(s->session_ctx, sess)) { in tls_parse_ctos_psk()
Dstatem_lib.c1110 SSL_CTX_remove_session(s->session_ctx, s->session); in tls_finish_handshake()
Dstatem_clnt.c2510 SSL_CTX_remove_session(s->session_ctx, s->session); in tls_process_new_session_ticket()
/third_party/openssl/test/
Dsslapitest.c1983 || !TEST_true(SSL_CTX_remove_session(cctx, sess2))) in execute_test_session()
1989 if (!TEST_false(SSL_CTX_remove_session(cctx, sess2))) in execute_test_session()
2066 if (!TEST_false(SSL_CTX_remove_session(sctx, sess2))) in execute_test_session()
2089 || !TEST_true(SSL_CTX_remove_session(sctx, sess2))) in execute_test_session()
/third_party/openssl/ohos_lite/include/openssl/
Dssl.h1668 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *session);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/
Dtls_openssl.c5511 if (SSL_CTX_remove_session(conn->ssl_ctx, sess) != 1) in tls_connection_remove_session()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Dtls_openssl.c5800 if (SSL_CTX_remove_session(conn->ssl_ctx, sess) != 1) in tls_connection_remove_session()
/third_party/openssl/include/openssl/
Dssl.h.in1706 int SSL_CTX_remove_session(SSL_CTX *ctx, SSL_SESSION *session);
/third_party/openssl/
DCHANGES.md14638 * Make removal from session cache (SSL_CTX_remove_session()) more robust: