1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-04-20 12:07:51 +03:00

improve comments

Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
Jerry Yu 2023-11-10 11:27:21 +08:00
parent 8cf44953b2
commit 31b601aa15
2 changed files with 5 additions and 7 deletions

View File

@ -518,7 +518,7 @@ int mbedtls_ssl_ticket_parse(void *p_ticket,
goto cleanup; goto cleanup;
} }
} }
#endif #endif /* MBEDTLS_SSL_PROTO_TLS1_2 */
#endif /* MBEDTLS_HAVE_TIME */ #endif /* MBEDTLS_HAVE_TIME */
cleanup: cleanup:

View File

@ -212,7 +212,6 @@ static int ssl_tls13_offered_psks_check_identity_match_ticket(
* Clients MUST NOT attempt to use tickets which have ages greater than * Clients MUST NOT attempt to use tickets which have ages greater than
* the "ticket_lifetime" value which was provided with the ticket. * the "ticket_lifetime" value which was provided with the ticket.
* *
* For time being, the age MUST be less than 604800 seconds (7 days).
*/ */
if (server_age > 604800 * 1000) { if (server_age > 604800 * 1000) {
MBEDTLS_SSL_DEBUG_MSG( MBEDTLS_SSL_DEBUG_MSG(
@ -228,11 +227,10 @@ static int ssl_tls13_offered_psks_check_identity_match_ticket(
* ticket_age_add from PskIdentity.obfuscated_ticket_age modulo 2^32) is * ticket_age_add from PskIdentity.obfuscated_ticket_age modulo 2^32) is
* within a small tolerance of the time since the ticket was issued. * within a small tolerance of the time since the ticket was issued.
* *
* NOTE: Typical crystal RTC accuracy specifications are from ±100 to ±20 * NOTE: The typical accuracy of an RTC crystal is ±100 to ±20 parts per
* parts per million (360 to 72 million seconds per hour). Defualt * million (360 to 72 milliseconds per hour). Default tolerance
* tolerance windows is 6000 millionsections, that means client host * windows is 6s, thus in the worst case client and servers must
* MUST sync up system time every 16 hours. Otherwise, the ticket will * sync up their system time every 6000/360/2~=8 hours.
* be invalid.
*/ */
client_age = obfuscated_ticket_age - session->ticket_age_add; client_age = obfuscated_ticket_age - session->ticket_age_add;
age_diff = server_age - client_age; age_diff = server_age - client_age;