Searched refs:verify_cb (Results 1 – 8 of 8) sorted by relevance
/openbsd/lib/libcrypto/x509/ |
H A D | x509_vfy.c | 172 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 D | x509_lu.c | 871 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 D | x509_local.h | 314 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 D | x509_vfy.h | 315 int (*verify_cb)(int, X509_STORE_CTX *)); 402 int (*verify_cb)(int, X509_STORE_CTX *));
|
H A D | x509_asid.c | 1078 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 D | x509_addr.c | 1857 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 D | x509_verify.c | 641 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 D | ts.c | 112 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
|