Symbol: verify_cb
crypto/libressl/apps/openssl/ts.c
112
static int verify_cb(int ok, X509_STORE_CTX *ctx);
crypto/libressl/apps/openssl/ts.c
1200
X509_STORE_set_verify_cb(cert_ctx, verify_cb);
crypto/libressl/crypto/x509/x509_addr.c
1806
return ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_addr.c
1837
if (ctx != NULL && ctx->verify_cb == NULL)
crypto/libressl/crypto/x509/x509_addr.c
1994
if (sk_X509_num(ctx->chain) <= 0 || ctx->verify_cb == NULL) {
crypto/libressl/crypto/x509/x509_asid.c
1005
ret = ctx->verify_cb(0, ctx); \
crypto/libressl/crypto/x509/x509_asid.c
1031
if (ctx != NULL && ctx->verify_cb == NULL)
crypto/libressl/crypto/x509/x509_asid.c
1156
if (sk_X509_num(ctx->chain) <= 0 || ctx->verify_cb == NULL) {
crypto/libressl/crypto/x509/x509_lcl.h
296
int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */
crypto/libressl/crypto/x509/x509_lcl.h
339
int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */
crypto/libressl/crypto/x509/x509_lu.c
829
X509_STORE_set_verify_cb(X509_STORE *store, X509_STORE_CTX_verify_cb verify_cb)
crypto/libressl/crypto/x509/x509_lu.c
831
store->verify_cb = verify_cb;
crypto/libressl/crypto/x509/x509_lu.c
837
return store->verify_cb;
crypto/libressl/crypto/x509/x509_verify.c
1280
return ctx->xsc->verify_cb(0, ctx->xsc);
crypto/libressl/crypto/x509/x509_verify.c
648
return ctx->xsc->verify_cb(ok, ctx->xsc);
crypto/libressl/crypto/x509/x509_vfy.c
1046
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1081
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1115
if (!ctx->verify_cb(0, ctx))
crypto/libressl/crypto/x509/x509_vfy.c
1123
if (!ctx->verify_cb(0, ctx))
crypto/libressl/crypto/x509/x509_vfy.c
1134
if (!ctx->verify_cb(0, ctx))
crypto/libressl/crypto/x509/x509_vfy.c
1143
if (!ctx->verify_cb(0, ctx))
crypto/libressl/crypto/x509/x509_vfy.c
1443
crl_ctx.verify_cb = ctx->verify_cb;
crypto/libressl/crypto/x509/x509_vfy.c
1669
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1684
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1691
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1700
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1708
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1727
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1734
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1763
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1774
ok = ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1813
if (!ctx->verify_cb(0, ctx))
crypto/libressl/crypto/x509/x509_vfy.c
1821
return ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1827
if (!ctx->verify_cb(2, ctx))
crypto/libressl/crypto/x509/x509_vfy.c
183
return ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1858
return ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
1990
if (!ctx->verify_cb(1, ctx))
crypto/libressl/crypto/x509/x509_vfy.c
2382
if (store && store->verify_cb)
crypto/libressl/crypto/x509/x509_vfy.c
2383
ctx->verify_cb = store->verify_cb;
crypto/libressl/crypto/x509/x509_vfy.c
2385
ctx->verify_cb = null_callback;
crypto/libressl/crypto/x509/x509_vfy.c
2526
return ctx->verify_cb;
crypto/libressl/crypto/x509/x509_vfy.c
2531
int (*verify_cb)(int, X509_STORE_CTX *))
crypto/libressl/crypto/x509/x509_vfy.c
2533
ctx->verify_cb = verify_cb;
crypto/libressl/crypto/x509/x509_vfy.c
254
cb = ctx->verify_cb;
crypto/libressl/crypto/x509/x509_vfy.c
711
return ctx->verify_cb(0, ctx);
crypto/libressl/crypto/x509/x509_vfy.c
744
cb = ctx->verify_cb;
crypto/libressl/crypto/x509/x509_vfy.c
885
if (!ctx->verify_cb(0, ctx))
crypto/libressl/crypto/x509/x509_vfy.c
938
cb = ctx->verify_cb;
crypto/libressl/include/openssl/x509_vfy.h
309
int (*verify_cb)(int, X509_STORE_CTX *));
crypto/libressl/include/openssl/x509_vfy.h
401
int (*verify_cb)(int, X509_STORE_CTX *));