Home
last modified time | relevance | path

Searched refs:verify_cb (Results 1 – 8 of 8) sorted by last modified time

/dragonfly/crypto/libressl/include/openssl/
H A Dx509_vfy.h309 int (*verify_cb)(int, X509_STORE_CTX *));
401 int (*verify_cb)(int, X509_STORE_CTX *));
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_vfy.c183 return ctx->verify_cb(0, ctx); in check_id_error()
254 cb = ctx->verify_cb; in X509_verify_cert_legacy_build_chain()
744 cb = ctx->verify_cb; in x509_vfy_check_chain_extensions()
885 if (!ctx->verify_cb(0, ctx)) in check_name_constraints()
938 cb = ctx->verify_cb; in check_trust()
1115 if (!ctx->verify_cb(0, ctx)) in check_crl_time()
1123 if (!ctx->verify_cb(0, ctx)) in check_crl_time()
1443 crl_ctx.verify_cb = ctx->verify_cb; in check_crl_path()
2383 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init()
2526 return ctx->verify_cb; in X509_STORE_CTX_get_verify_cb()
[all …]
H A Dx509_lu.c829 X509_STORE_set_verify_cb(X509_STORE *store, X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_set_verify_cb() argument
831 store->verify_cb = verify_cb; in X509_STORE_set_verify_cb()
837 return store->verify_cb; in X509_STORE_get_verify_cb()
H A Dx509_verify.c648 return ctx->xsc->verify_cb(ok, ctx->xsc); in x509_verify_cert_error()
1280 return ctx->xsc->verify_cb(0, ctx->xsc); in x509_verify()
H A Dx509_lcl.h296 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ member
339 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ member
H A Dx509_asid.c1005 ret = ctx->verify_cb(0, ctx); \
1031 if (ctx != NULL && ctx->verify_cb == NULL) in asid_validate_path_internal()
1156 if (sk_X509_num(ctx->chain) <= 0 || ctx->verify_cb == NULL) { in X509v3_asid_validate_path()
H A Dx509_addr.c1806 return ctx->verify_cb(0, ctx); in verify_error()
1837 if (ctx != NULL && ctx->verify_cb == NULL) in addr_validate_path_internal()
1994 if (sk_X509_num(ctx->chain) <= 0 || ctx->verify_cb == NULL) { in X509v3_addr_validate_path()
/dragonfly/crypto/libressl/apps/openssl/
H A Dts.c112 static int verify_cb(int ok, X509_STORE_CTX *ctx);
1200 X509_STORE_set_verify_cb(cert_ctx, verify_cb); in create_cert_store()
1237 verify_cb(int ok, X509_STORE_CTX *ctx) in verify_cb() function