Lines Matching refs:cert
400 int ossl_x509_print_ex_brief(BIO *bio, X509 *cert, unsigned long neg_cflags)
405 if (cert == NULL)
408 || !X509_print_ex(bio, cert, flags, ~X509_FLAG_NO_SUBJECT))
410 if (X509_check_issued((X509 *)cert, cert) == X509_V_OK) {
415 || !X509_print_ex(bio, cert, flags, ~X509_FLAG_NO_ISSUER))
418 if (!X509_print_ex(bio, cert, flags,
421 if (X509_cmp_current_time(X509_get0_notBefore(cert)) > 0)
424 if (X509_cmp_current_time(X509_get0_notAfter(cert)) < 0)
427 return X509_print_ex(bio, cert, flags,
439 X509 *cert = sk_X509_value(certs, i);
441 if (cert != NULL) {
442 if (!ossl_x509_print_ex_brief(bio, cert, 0))
445 X509_get0_extensions(cert),
466 /* Extend the error queue with details on a failed cert verification */