Home
last modified time | relevance | path

Searched refs:agems (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/ssl/statem/
H A Dextensions_srvr.c1102 uint32_t ticket_age = 0, agesec, agems; in tls_parse_ctos_psk() local
1143 agems = agesec * (uint32_t)1000; in tls_parse_ctos_psk()
1156 && agems / (uint32_t)1000 == agesec in tls_parse_ctos_psk()
1157 && ticket_age <= agems + 1000 in tls_parse_ctos_psk()
1158 && ticket_age + TICKET_AGE_ALLOWANCE >= agems + 1000) { in tls_parse_ctos_psk()
H A Dextensions_clnt.c981 uint32_t agesec, agems = 0; in tls_construct_ctos_psk() local
1058 agems = agesec * (uint32_t)1000; in tls_construct_ctos_psk()
1060 if (agesec != 0 && agems / (uint32_t)1000 != agesec) { in tls_construct_ctos_psk()
1072 agems += s->session->ext.tick_age_add; in tls_construct_ctos_psk()
1117 || !WPACKET_put_bytes_u32(pkt, agems)) { in tls_construct_ctos_psk()