Lines Matching refs:ticklen
2688 unsigned int ticklen; in tls_process_new_session_ticket() local
2702 || !PACKET_get_net_2(pkt, &ticklen) in tls_process_new_session_ticket()
2703 || (SSL_CONNECTION_IS_TLS13(s) ? (ticklen == 0 in tls_process_new_session_ticket()
2704 || PACKET_remaining(pkt) < ticklen) in tls_process_new_session_ticket()
2705 : PACKET_remaining(pkt) != ticklen)) { in tls_process_new_session_ticket()
2715 if (ticklen == 0) in tls_process_new_session_ticket()
2757 s->session->ext.ticklen = 0; in tls_process_new_session_ticket()
2759 s->session->ext.tick = OPENSSL_malloc(ticklen); in tls_process_new_session_ticket()
2764 if (!PACKET_copy_bytes(pkt, s->session->ext.tick, ticklen)) { in tls_process_new_session_ticket()
2771 s->session->ext.ticklen = ticklen; in tls_process_new_session_ticket()
2814 if (!EVP_Digest(s->session->ext.tick, ticklen, in tls_process_new_session_ticket()