Home | History | Annotate | Download | only in ssl

Lines Matching defs:ticket

1612   CBS new_session_ticket = msg.body, ticket;
1615 !CBS_get_u16_length_prefixed(&new_session_ticket, &ticket) ||
1622 if (CBS_len(&ticket) == 0) {
1623 // RFC 5077 allows a server to change its mind and send no ticket after
1635 // The server is sending a new ticket for an existing session. Sessions are
1636 // immutable once established, so duplicate all but the ticket of the
1648 // |tlsext_tick_lifetime_hint| is measured from when the ticket was issued.
1651 if (!CBS_stow(&ticket, &session->tlsext_tick, &session->tlsext_ticklen)) {
1657 // Generate a session ID for this session based on the session ticket. We use
1658 // the session ID mechanism for detecting ticket resumption. This also fits in
1660 if (!EVP_Digest(CBS_data(&ticket), CBS_len(&ticket),