Home | History | Annotate | Download | only in ssl

Lines Matching refs:epoch

225   uint16_t epoch = (((uint16_t)sequence[0]) << 8) | sequence[1];
226 if (epoch != ssl->d1->r_epoch ||
228 // Drop this record. It's from the wrong epoch or is a replay. Note that if
229 // |epoch| is the next epoch, the record could be buffered for later. For
304 // Determine the parameters for the current epoch.
305 uint16_t epoch = ssl->d1->w_epoch;
310 epoch = ssl->d1->w_epoch - 1;
326 out[3] = epoch >> 8;
327 out[4] = epoch & 0xff;