Symbol: verify_cb
crypto/openssl/apps/ts.c
1009
X509_STORE_set_verify_cb(cert_ctx, verify_cb);
crypto/openssl/apps/ts.c
75
static int verify_cb(int ok, X509_STORE_CTX *ctx);
crypto/openssl/crypto/cmp/cmp_genm.c
214
X509_STORE_CTX_verify_cb verify_cb;
crypto/openssl/crypto/cmp/cmp_genm.c
216
if (ts == NULL || (verify_cb = X509_STORE_get_verify_cb(ts)) == NULL)
crypto/openssl/crypto/cmp/cmp_genm.c
218
return (*verify_cb)(ok, store_ctx);
crypto/openssl/crypto/cmp/cmp_vfy.c
146
X509_STORE_CTX_verify_cb verify_cb;
crypto/openssl/crypto/cmp/cmp_vfy.c
150
if (ts == NULL || (verify_cb = X509_STORE_get_verify_cb(ts)) == NULL)
crypto/openssl/crypto/cmp/cmp_vfy.c
156
ok = (*verify_cb)(0, csc);
crypto/openssl/crypto/x509/v3_addr.c
1196
rv = ctx->verify_cb(0, ctx); \
crypto/openssl/crypto/x509/v3_addr.c
1222
|| !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) {
crypto/openssl/crypto/x509/v3_addr.c
1336
|| ctx->verify_cb == NULL) {
crypto/openssl/crypto/x509/v3_asid.c
708
ret = ctx->verify_cb(0, ctx); \
crypto/openssl/crypto/x509/v3_asid.c
729
|| !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) {
crypto/openssl/crypto/x509/v3_asid.c
848
|| ctx->verify_cb == NULL) {
crypto/openssl/crypto/x509/x509_local.h
125
int (*verify_cb)(int ok, X509_STORE_CTX *ctx);
crypto/openssl/crypto/x509/x509_lu.c
820
X509_STORE_CTX_verify_cb verify_cb)
crypto/openssl/crypto/x509/x509_lu.c
822
xs->verify_cb = verify_cb;
crypto/openssl/crypto/x509/x509_lu.c
827
return xs->verify_cb;
crypto/openssl/crypto/x509/x509_vfy.c
1489
crl_ctx.verify_cb = ctx->verify_cb;
crypto/openssl/crypto/x509/x509_vfy.c
167
return ctx->verify_cb(0, ctx);
crypto/openssl/crypto/x509/x509_vfy.c
1828
return ctx->verify_cb(0, ctx);
crypto/openssl/crypto/x509/x509_vfy.c
184
return ctx->verify_cb(0, ctx);
crypto/openssl/crypto/x509/x509_vfy.c
1843
if (!ctx->verify_cb(2, ctx))
crypto/openssl/crypto/x509/x509_vfy.c
1900
if (!ctx->verify_cb(ctx->error == X509_V_OK, ctx))
crypto/openssl/crypto/x509/x509_vfy.c
2000
if (!ctx->verify_cb(1, ctx))
crypto/openssl/crypto/x509/x509_vfy.c
225
return !!ctx->verify_cb(ctx->error == X509_V_OK, ctx);
crypto/openssl/crypto/x509/x509_vfy.c
2557
if (store != NULL && store->verify_cb != NULL)
crypto/openssl/crypto/x509/x509_vfy.c
2558
ctx->verify_cb = store->verify_cb;
crypto/openssl/crypto/x509/x509_vfy.c
2560
ctx->verify_cb = null_callback;
crypto/openssl/crypto/x509/x509_vfy.c
2729
X509_STORE_CTX_verify_cb verify_cb)
crypto/openssl/crypto/x509/x509_vfy.c
2731
ctx->verify_cb = verify_cb;
crypto/openssl/crypto/x509/x509_vfy.c
2736
return ctx->verify_cb;
crypto/openssl/crypto/x509/x509_vfy.c
3238
return ctx->verify_cb(1, ctx);
crypto/openssl/include/crypto/x509.h
231
int (*verify_cb)(int ok, X509_STORE_CTX *ctx);
crypto/openssl/include/openssl/x509_vfy.h
526
X509_STORE_CTX_verify_cb verify_cb);
crypto/openssl/test/cert_comp_test.c
185
SSL_CTX_set_verify(sctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb);
crypto/openssl/test/sslapitest.c
6244
verify_cb);
crypto/openssl/test/sslapitest.c
9348
verify_cb);