Searched refs:ciph_len (Results 1 – 2 of 2) sorted by relevance
214 size_t clear_len, ciph_len; in mbedtls_ssl_ticket_write() local258 state, end - state, &ciph_len, in mbedtls_ssl_ticket_write()263 if( ciph_len != clear_len + TICKET_AUTH_TAG_BYTES ) in mbedtls_ssl_ticket_write()269 *tlen = TICKET_MIN_LEN + ciph_len - TICKET_AUTH_TAG_BYTES; in mbedtls_ssl_ticket_write()
1175 unsigned int ciph_len, sess_len, chal_len; in ssl_parse_client_hello_v2() local1268 ciph_len = ( buf[0] << 8 ) | buf[1]; in ssl_parse_client_hello_v2()1278 if( ciph_len < 3 || ( ciph_len % 3 ) != 0 ) in ssl_parse_client_hello_v2()1296 if( n != 6 + ciph_len + sess_len + chal_len ) in ssl_parse_client_hello_v2()1303 buf + 6, ciph_len ); in ssl_parse_client_hello_v2()1305 buf + 6 + ciph_len, sess_len ); in ssl_parse_client_hello_v2()1309 p = buf + 6 + ciph_len; in ssl_parse_client_hello_v2()1848 ciph_len = ( buf[ciph_offset + 0] << 8 ) in ssl_parse_client_hello()1851 if( ciph_len < 2 || in ssl_parse_client_hello()1853 ( ciph_len % 2 ) != 0 ) in ssl_parse_client_hello()[all …]
Completed in 9 milliseconds