Home
last modified time | relevance | path

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

/openbsd/lib/libcrypto/x509/
H A Dx509_vfy.c172 return ctx->verify_cb(0, ctx); in check_id_error()
237 cb = ctx->verify_cb; in X509_verify_cert_legacy_build_chain()
716 cb = ctx->verify_cb; in x509_vfy_check_chain_extensions()
813 if (!ctx->verify_cb(0, ctx)) in check_name_constraints()
865 cb = ctx->verify_cb; in x509_vfy_check_trust()
1024 if (!ctx->verify_cb(0, ctx)) in check_crl_time()
1032 if (!ctx->verify_cb(0, ctx)) in check_crl_time()
1352 crl_ctx.verify_cb = ctx->verify_cb; in check_crl_path()
2270 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init()
2369 return ctx->verify_cb; in X509_STORE_CTX_get_verify_cb()
[all …]
H A Dx509_lu.c871 X509_STORE_set_verify_cb(X509_STORE *store, X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_set_verify_cb() argument
873 store->verify_cb = verify_cb; in X509_STORE_set_verify_cb()
880 return store->verify_cb; in X509_STORE_get_verify_cb()
H A Dx509_local.h314 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ member
348 int (*verify_cb)(int ok,X509_STORE_CTX *ctx); /* error callback */ member
H A Dx509_vfy.h315 int (*verify_cb)(int, X509_STORE_CTX *));
402 int (*verify_cb)(int, X509_STORE_CTX *));
H A Dx509_asid.c1078 ret = ctx->verify_cb(0, ctx); \
1104 if (ctx != NULL && ctx->verify_cb == NULL) in asid_validate_path_internal()
1229 if (sk_X509_num(ctx->chain) <= 0 || ctx->verify_cb == NULL) { in X509v3_asid_validate_path()
H A Dx509_addr.c1857 return ctx->verify_cb(0, ctx); in verify_error()
1888 if (ctx != NULL && ctx->verify_cb == NULL) in addr_validate_path_internal()
2048 if (sk_X509_num(ctx->chain) <= 0 || ctx->verify_cb == NULL) { in X509v3_addr_validate_path()
H A Dx509_verify.c641 return ctx->xsc->verify_cb(ok, ctx->xsc); in x509_verify_cert_error()
1269 return ctx->xsc->verify_cb(0, ctx->xsc); in x509_verify()
/openbsd/usr.bin/openssl/
H A Dts.c112 static int verify_cb(int ok, X509_STORE_CTX *ctx);
1202 X509_STORE_set_verify_cb(cert_ctx, verify_cb); in create_cert_store()
1239 verify_cb(int ok, X509_STORE_CTX *ctx) in verify_cb() function