Home
last modified time | relevance | path

Searched refs:session_id_length (Results 1 – 22 of 22) sorted by relevance

/trueos/crypto/openssl/ssl/
HDssl_sess.c358 *len = s->session_id_length; in SSL_SESSION_get_id()
428 ss->session_id_length = SSL2_SSL_SESSION_ID_LENGTH; in ssl_get_new_session()
431 ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH; in ssl_get_new_session()
434 ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH; in ssl_get_new_session()
437 ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH; in ssl_get_new_session()
440 ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH; in ssl_get_new_session()
443 ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH; in ssl_get_new_session()
446 ss->session_id_length = SSL3_SSL_SESSION_ID_LENGTH; in ssl_get_new_session()
469 ss->session_id_length = 0; in ssl_get_new_session()
481 tmp = ss->session_id_length; in ssl_get_new_session()
[all …]
HDs2_srvr.c600 s->s2->tmp.session_id_length = i; in get_client_hello()
617 (unsigned long)s->s2->tmp.session_id_length; in get_client_hello()
639 if ((s->s2->tmp.session_id_length != 0) && in get_client_hello()
640 (s->s2->tmp.session_id_length != SSL2_SSL_SESSION_ID_LENGTH)) { in get_client_hello()
646 if (s->s2->tmp.session_id_length == 0) { in get_client_hello()
653 s->s2->tmp.session_id_length, NULL); in get_client_hello()
711 p += s->s2->tmp.session_id_length; in get_client_hello()
916 if (s->session->session_id_length > sizeof s->session->session_id) { in server_finish()
921 (unsigned int)s->session->session_id_length); in server_finish()
925 s->init_num = s->session->session_id_length + 1; in server_finish()
HDs2_clnt.c425 s->session->session_id_length = 0; in get_server_hello()
433 if (s->session->session_id_length > 0) { in get_server_hello()
568 if ((s->session->session_id_length > 0) && in client_hello()
569 (s->session->session_id_length <= in client_hello()
571 i = s->session->session_id_length; in client_hello()
979 s->session->session_id_length = SSL2_SSL_SESSION_ID_LENGTH; in get_server_finished()
983 if ((s->session->session_id_length > in get_server_finished()
987 (unsigned int)s->session->session_id_length))) { in get_server_finished()
HDssl2.h212 unsigned int session_id_length; member
HDssl_asn1.c192 a.session_id.length = in->session_id_length; in i2d_SSL_SESSION()
454 ret->session_id_length = os.length; in d2i_SSL_SESSION()
593 } else if (ret->tlsext_ticklen && ret->session_id_length) in d2i_SSL_SESSION()
HDssl_txt.c152 for (i = 0; i < x->session_id_length; i++) { in SSL_SESSION_print()
HDs3_clnt.c688 !sess->session_id_length || in ssl3_client_hello()
694 (!sess->session_id_length && !sess->tlsext_tick) || in ssl3_client_hello()
757 i = s->session->session_id_length; in ssl3_client_hello()
933 if (j != 0 && j == s->session->session_id_length in ssl3_get_server_hello()
952 if (s->session->session_id_length > 0) { in ssl3_get_server_hello()
958 s->session->session_id_length = j; in ssl3_get_server_hello()
2150 if (s->session->session_id_length > 0) { in ssl3_get_new_session_ticket()
2212 s->session->session_id, &s->session->session_id_length, in ssl3_get_new_session_ticket()
HDssl_lib.c458 r.session_id_length = id_len; in SSL_has_matching_session_id()
469 r.session_id_length = SSL2_SSL_SESSION_ID_LENGTH; in SSL_has_matching_session_id()
1696 if (a->session_id_length != b->session_id_length) in ssl_session_cmp()
1698 return (memcmp(a->session_id, b->session_id, a->session_id_length)); in ssl_session_cmp()
2419 if (s->session->session_id_length == 0) in ssl_update_cache()
HDd1_clnt.c802 !sess->session_id_length || in dtls1_client_hello()
804 (!sess->session_id_length && !sess->tlsext_tick) || in dtls1_client_hello()
837 i = s->session->session_id_length; in dtls1_client_hello()
HDs23_clnt.c443 s->session->session_id_length = 0; in ssl23_client_hello()
HDd1_srvr.c986 s->session->session_id_length = 0; in dtls1_send_server_hello()
988 sl = s->session->session_id_length; in dtls1_send_server_hello()
HDs3_srvr.c1553 s->session->session_id_length = 0; in ssl3_send_server_hello()
1555 sl = s->session->session_id_length; in ssl3_send_server_hello()
3402 sess->session_id_length = 0; /* ID is irrelevant for the ticket */ in ssl3_send_newsession_ticket()
HDt1_lib.c2347 sess->session_id_length = sesslen; in tls_decrypt_ticket()
HDssl.h484 unsigned int session_id_length; member
/trueos/contrib/wpa/patches/
HDopenssl-0.9.8e-tls-extensions.patch71 - if (j != 0 && j == s->session->session_id_length
83 + s->session->session_id_length = j;
89 + if ((pre_shared || j != 0) && j == s->session->session_id_length
HDopenssl-0.9.8d-tls-extensions.patch147 - if (j != 0 && j == s->session->session_id_length
159 + s->session->session_id_length = j;
165 + if ((pre_shared || j != 0) && j == s->session->session_id_length
HDopenssl-0.9.8-tls-extensions.patch147 - if (j != 0 && j == s->session->session_id_length
159 + s->session->session_id_length = j;
165 + if ((pre_shared || j != 0) && j == s->session->session_id_length
HDopenssl-0.9.8h-tls-extensions.patch33 if (j != 0 && j == s->session->session_id_length
44 - if (!s->session->tlsext_tick || s->session->session_id_length)
HDopenssl-0.9.8i-tls-extensions.patch35 if (j != 0 && j == s->session->session_id_length
46 - if (!s->session->tlsext_tick || s->session->session_id_length)
HDopenssl-0.9.9-session-ticket.patch38 if (j != 0 && j == s->session->session_id_length
49 - if (!s->session->tlsext_tick || s->session->session_id_length)
HDopenssl-0.9.8x-tls-extensions.patch34 if (j != 0 && j == s->session->session_id_length
45 - if (!s->session->tlsext_tick || s->session->session_id_length)
HDopenssl-0.9.8g-tls-extensions.patch33 if (j != 0 && j == s->session->session_id_length