Lines Matching refs:id_len
14 unsigned int *id_len);
19 unsigned int id_len);
30 (of length B<id_len>) is already contained in the internal session cache
49 B<id> into and a pointer to the maximum allowed length B<id_len>. The
50 buffer at location B<id> is only guaranteed to have the size B<id_len>.
51 The callback is only allowed to generate a shorter id and reduce B<id_len>;
52 the callback B<must never> increase B<id_len> or write to the location
56 callback may only fill part of the possible length and leave B<id_len>
69 guarantee uniqueness, it is recommended to use the maximum B<id_len> and
102 unsigned int *id_len)
107 RAND_pseudo_bytes(id, *id_len);
115 memcpy(id, session_id_prefix, strlen(session_id_prefix) < *id_len ?
116 strlen(session_id_prefix) : *id_len);
117 } while (SSL_has_matching_session_id(ssl, id, *id_len)