Home
last modified time | relevance | path

Searched refs:verify_cb (Results 1 – 12 of 12) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/x509/
HDx509_vfy.c163 return ctx->verify_cb(0, ctx); in verify_cb_cert()
176 return ctx->verify_cb(0, ctx); in verify_cb_crl()
1317 crl_ctx.verify_cb = ctx->verify_cb; in check_crl_path()
1676 return ctx->verify_cb(0, ctx); in check_policy()
1691 if (!ctx->verify_cb(2, ctx)) in check_policy()
1841 if (!ctx->verify_cb(1, ctx)) in internal_verify()
2320 if (store && store->verify_cb) in X509_STORE_CTX_init()
2321 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init()
2323 ctx->verify_cb = null_callback; in X509_STORE_CTX_init()
2489 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_CTX_set_verify_cb() argument
[all …]
HDx509_lu.c789 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_set_verify_cb() argument
791 ctx->verify_cb = verify_cb; in X509_STORE_set_verify_cb()
796 return ctx->verify_cb; in X509_STORE_get_verify_cb()
HDx509_local.h116 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
/freebsd-13-stable/crypto/openssl/doc/man3/
HDX509_STORE_set_verify_cb_func.pod60 X509_STORE_CTX_verify_cb verify_cb);
108 X509_STORE_CTX_verify_cb verify_cb);
117 B<verify_cb> overwriting the previous callback.
HDX509_STORE_CTX_set_verify_cb.pod29 X509_STORE_CTX_verify_cb verify_cb);
45 B<verify_cb> overwriting any existing callback.
HDSSL_CTX_dane_enable.pod197 int (*verify_cb)(int ok, X509_STORE_CTX *sctx) = NULL;
264 /* Optionally set verify_cb to a suitable non-NULL callback. */
265 SSL_set_verify(ssl, SSL_VERIFY_NONE, verify_cb);
269 /* Optionally set verify_cb to a suitable non-NULL callback. */
279 SSL_set_verify(ssl, SSL_VERIFY_PEER, verify_cb);
/freebsd-13-stable/crypto/openssl/crypto/x509v3/
HDv3_asid.c736 ret = ctx->verify_cb(0, ctx); \
757 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in asid_validate_path_internal()
884 || ctx->verify_cb == NULL) { in X509v3_asid_validate_path()
HDv3_addr.c1178 ret = ctx->verify_cb(0, ctx); \
1204 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in addr_validate_path_internal()
1309 || ctx->verify_cb == NULL) { in X509v3_addr_validate_path()
/freebsd-13-stable/crypto/openssl/include/crypto/
HDx509.h211 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
/freebsd-13-stable/crypto/openssl/apps/
HDts.c75 static int verify_cb(int ok, X509_STORE_CTX *ctx);
943 X509_STORE_set_verify_cb(cert_ctx, verify_cb); in create_cert_store()
980 static int verify_cb(int ok, X509_STORE_CTX *ctx) in verify_cb() function
/freebsd-13-stable/crypto/openssl/include/openssl/
HDx509_vfy.h293 X509_STORE_CTX_verify_cb verify_cb);
/freebsd-13-stable/crypto/openssl/
HDCHANGES10671 The verify_cb() and verify() callbacks now have equivalents