X509_cmp_time
ret = X509_cmp_time(X509_get0_notAfter(x), &tcheck) < 0;
if (X509_cmp_time(thisupd, &t_tmp) > 0) {
if (X509_cmp_time(thisupd, &t_tmp) < 0) {
if (X509_cmp_time(nextupd, &t_tmp) < 0) {
i = X509_cmp_time(X509_CRL_get0_lastUpdate(crl), ptime);
i = X509_cmp_time(X509_CRL_get0_nextUpdate(crl), ptime);
i = X509_cmp_time(X509_get0_notBefore(x), ptime);
i = X509_cmp_time(X509_get0_notAfter(x), ptime);
return X509_cmp_time(ctm, NULL);
if (end != NULL && X509_cmp_time(end, time) < 0)
if (start != NULL && X509_cmp_time(start, time) > 0)
int X509_cmp_time(const ASN1_TIME *s, time_t *t);
result = X509_cmp_time(&t, &x509_cmp_tests[idx].cmp_time);
cmp_result = X509_cmp_time(asn1_before, NULL);
cmp_result = X509_cmp_time(asn1_after, NULL);