Lines Matching refs:fail_info
364 int fail_info, const char *txt)
371 certConf = ossl_cmp_certConf_new(ctx, certReqId, fail_info, txt);
384 int ossl_cmp_exchange_error(OSSL_CMP_CTX *ctx, int status, int fail_info,
393 if ((si = OSSL_CMP_STATUSINFO_new(status, fail_info, txt)) == NULL)
488 int OSSL_CMP_certConf_cb(OSSL_CMP_CTX *ctx, X509 *cert, int fail_info,
495 if (fail_info != 0) /* accept any error flagged by CMP core library */
496 return fail_info;
534 fail_info = 1 << OSSL_CMP_PKIFAILUREINFO_incorrectData;
549 return fail_info;
565 int fail_info = 0; /* no failure */
629 fail_info = 1 << OSSL_CMP_PKIFAILUREINFO_incorrectData;
633 * OSSL_CMP_PKISTATUS_rejection, fail_info, txt)
643 * It may overrule the pre-decision reflected in 'fail_info' and '*txt'.
646 if ((fail_info = cb(ctx, ctx->newCert, fail_info, &txt)) != 0
649 if (fail_info != 0) /* immediately log error before any certConf exchange */
654 if (!ossl_cmp_exchange_certConf(ctx, rid, fail_info, txt))
659 if (fail_info != 0) {