Lines Matching full:error
176 BIO_printf(bio_err, "Error loading file %s\n", CAfile);
187 BIO_printf(bio_err, "Error loading directory %s\n", CApath);
197 BIO_printf(bio_err, "Error loading untrusted file %s\n", untfile);
205 BIO_printf(bio_err, "Error loading untrusted file %s\n", trustfile);
294 BIO_printf(bio_err,"error opening the file, %s\n",certfile);
300 BIO_printf(bio_err,"error reading the file, %s\n",certfile);
340 printf("error %d at %d depth lookup:%s\n",ctx->error,
342 X509_verify_cert_error_string(ctx->error));
343 if (ctx->error == X509_V_ERR_CERT_HAS_EXPIRED) ok=1;
348 if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) ok=1;
350 if (ctx->error == X509_V_ERR_INVALID_CA) ok=1;
351 if (ctx->error == X509_V_ERR_INVALID_NON_CA) ok=1;
352 if (ctx->error == X509_V_ERR_PATH_LENGTH_EXCEEDED) ok=1;
353 if (ctx->error == X509_V_ERR_INVALID_PURPOSE) ok=1;
354 if (ctx->error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT) ok=1;
355 if (ctx->error == X509_V_ERR_CRL_HAS_EXPIRED) ok=1;
356 if (ctx->error == X509_V_ERR_CRL_NOT_YET_VALID) ok=1;
357 if (ctx->error == X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION) ok=1;
359 if (ctx->error == X509_V_ERR_NO_EXPLICIT_POLICY)
364 if ((ctx->error == X509_V_OK) && (ok == 2))