Home
last modified time | relevance | path

Searched refs:mbedtls_x509_time_cmp (Results 1 – 3 of 3) sorted by relevance

/mbedtls-latest/library/
Dx509_crt.c2095 if (mbedtls_x509_time_cmp(&crl_list->next_update, now) < 0) { in x509_crt_verifycrl()
2099 if (mbedtls_x509_time_cmp(&crl_list->this_update, now) > 0) { in x509_crt_verifycrl()
2328 if (mbedtls_x509_time_cmp(&parent->valid_to, now) < 0 || /* past */ in x509_crt_find_parent_in()
2329 mbedtls_x509_time_cmp(&parent->valid_from, now) > 0) { /* future */ in x509_crt_find_parent_in()
2567 if (mbedtls_x509_time_cmp(&child->valid_to, &now) < 0) { in x509_crt_verify_chain()
2571 if (mbedtls_x509_time_cmp(&child->valid_from, &now) > 0) { in x509_crt_verify_chain()
Dx509.c1036 int mbedtls_x509_time_cmp(const mbedtls_x509_time *t1, in mbedtls_x509_time_cmp() function
1083 return mbedtls_x509_time_cmp(to, &now) < 0; in mbedtls_x509_time_is_past()
1094 return mbedtls_x509_time_cmp(from, &now) > 0; in mbedtls_x509_time_is_future()
/mbedtls-latest/include/mbedtls/
Dx509.h385 int mbedtls_x509_time_cmp(const mbedtls_x509_time *t1, const mbedtls_x509_time *t2);