Lines Matching refs:ok
116 static int null_callback(int ok,X509_STORE_CTX *e);
146 static int null_callback(int ok, X509_STORE_CTX *e)
148 return ok;
198 int depth,i,ok=0;
256 ok = ctx->get_issuer(&xtmp, ctx, x);
257 if (ok < 0)
262 if (ok > 0)
312 ok = ctx->get_issuer(&xtmp, ctx, x);
313 if ((ok <= 0) || X509_cmp(x, xtmp))
318 if (ok == 1) X509_free(xtmp);
320 ok=cb(0,ctx);
321 if (!ok) goto end;
354 ok = ctx->get_issuer(&xtmp, ctx, x);
356 if (ok < 0) goto end;
357 if (ok == 0) break;
364 ok = 0;
404 ok=cb(0,ctx);
405 if (!ok) goto end;
409 ok = check_chain_extensions(ctx);
411 if (!ok) goto end;
415 ok = check_name_constraints(ctx);
417 if (!ok) goto end;
419 ok = check_id(ctx);
421 if (!ok) goto end;
427 ok = ctx->check_revocation(ctx);
428 if(!ok) goto end;
436 ok = cb(0, ctx);
437 if (!ok)
443 ok=ctx->verify(ctx);
445 ok=internal_verify(ctx);
446 if(!ok) goto end;
450 ok = ctx->check_policy(ctx);
455 return ok;
514 int i, ok=0, must_be_ca, plen = 0;
560 ok=cb(0,ctx);
561 if (!ok) goto end;
568 ok=cb(0,ctx);
569 if (!ok) goto end;
609 ok=cb(0,ctx);
610 if (!ok) goto end;
622 ok=cb(0,ctx);
623 if (!ok) goto end;
634 ok=cb(0,ctx);
635 if (!ok) goto end;
652 ok=cb(0,ctx);
653 if (!ok) goto end;
661 ok = 1;
663 return ok;
752 int ok;
760 ok = X509_check_trust(x, ctx->param->trust, 0);
762 if (ok == X509_TRUST_TRUSTED)
767 if (ok == X509_TRUST_REJECTED)
772 ok = cb(0, ctx);
773 if (!ok)
804 int i, last, ok;
819 ok = check_cert(ctx);
820 if (!ok) return ok;
830 int ok, cnum;
843 ok = ctx->get_crl(ctx, &crl, x);
845 ok = get_crl_delta(ctx, &crl, &dcrl, x);
849 if(!ok)
852 ok = ctx->verify_cb(0, ctx);
856 ok = ctx->check_crl(ctx, crl);
857 if (!ok)
862 ok = ctx->check_crl(ctx, dcrl);
863 if (!ok)
865 ok = ctx->cert_crl(ctx, dcrl, x);
866 if (!ok)
870 ok = 1;
873 if (ok != 2)
875 ok = ctx->cert_crl(ctx, crl, x);
876 if (!ok)
890 ok = ctx->verify_cb(0, ctx);
899 return ok;
1441 int ok;
1449 ok = get_crl_sk(ctx, &crl, &dcrl,
1452 if (ok)
1488 int ok = 0, chnum, cnum;
1507 ok = ctx->verify_cb(0, ctx);
1508 if(!ok) goto err;
1524 ok = ctx->verify_cb(0, ctx);
1525 if(!ok) goto err;
1531 ok = ctx->verify_cb(0, ctx);
1532 if(!ok) goto err;
1540 ok = ctx->verify_cb(0, ctx);
1541 if(!ok) goto err;
1548 ok = ctx->verify_cb(0, ctx);
1549 if(!ok) goto err;
1557 ok = check_crl_time(ctx, crl, 1);
1558 if (!ok)
1568 ok = ctx->verify_cb(0, ctx);
1569 if (!ok) goto err;
1578 ok = ctx->verify_cb(0, ctx);
1579 if (!ok)
1586 ok = ctx->verify_cb(0, ctx);
1587 if (!ok) goto err;
1592 ok = 1;
1596 return ok;
1602 int ok;
1613 ok = ctx->verify_cb(0, ctx);
1614 if(!ok)
1625 ok = ctx->verify_cb(0, ctx);
1626 if (!ok)
1732 int ok=0,n;
1757 ok=cb(0,ctx);
1783 ok=(*cb)(0,ctx);
1784 if (!ok) goto end;
1790 ok=(*cb)(0,ctx);
1791 if (!ok)
1804 ok = check_cert_time(ctx, xs);
1805 if (!ok)
1811 ok=(*cb)(1,ctx);
1812 if (!ok) goto end;
1821 ok=1;
1823 return ok;