/third_party/node/deps/openssl/openssl/crypto/x509/ |
D | x509_vfy.c | 163 return ctx->verify_cb(0, ctx); in verify_cb_cert() 180 return ctx->verify_cb(0, ctx); in verify_cb_crl() 1335 crl_ctx.verify_cb = ctx->verify_cb; in check_crl_path() 1679 return ctx->verify_cb(0, ctx); in check_policy() 1694 if (!ctx->verify_cb(2, ctx)) in check_policy() 1840 if (!ctx->verify_cb(1, ctx)) in internal_verify() 2369 if (store != NULL && store->verify_cb != NULL) in X509_STORE_CTX_init() 2370 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init() 2372 ctx->verify_cb = null_callback; in X509_STORE_CTX_init() 2530 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_CTX_set_verify_cb() argument [all …]
|
D | x509_lu.c | 842 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_set_verify_cb() argument 844 ctx->verify_cb = verify_cb; in X509_STORE_set_verify_cb() 849 return ctx->verify_cb; in X509_STORE_get_verify_cb()
|
D | v3_asid.c | 725 ret = ctx->verify_cb(0, ctx); \ 746 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in asid_validate_path_internal() 873 || ctx->verify_cb == NULL) { in X509v3_asid_validate_path()
|
D | x509_local.h | 125 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
D | v3_addr.c | 1193 rv = ctx->verify_cb(0, ctx); \ 1219 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in addr_validate_path_internal() 1334 || ctx->verify_cb == NULL) { in X509v3_addr_validate_path()
|
/third_party/openssl/crypto/x509/ |
D | x509_vfy.c | 163 return ctx->verify_cb(0, ctx); in verify_cb_cert() 180 return ctx->verify_cb(0, ctx); in verify_cb_crl() 1335 crl_ctx.verify_cb = ctx->verify_cb; in check_crl_path() 1679 return ctx->verify_cb(0, ctx); in check_policy() 1694 if (!ctx->verify_cb(2, ctx)) in check_policy() 1840 if (!ctx->verify_cb(1, ctx)) in internal_verify() 2369 if (store != NULL && store->verify_cb != NULL) in X509_STORE_CTX_init() 2370 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init() 2372 ctx->verify_cb = null_callback; in X509_STORE_CTX_init() 2530 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_CTX_set_verify_cb() argument [all …]
|
D | x509_lu.c | 842 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_set_verify_cb() argument 844 ctx->verify_cb = verify_cb; in X509_STORE_set_verify_cb() 849 return ctx->verify_cb; in X509_STORE_get_verify_cb()
|
D | v3_asid.c | 725 ret = ctx->verify_cb(0, ctx); \ 746 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in asid_validate_path_internal() 873 || ctx->verify_cb == NULL) { in X509v3_asid_validate_path()
|
D | x509_local.h | 125 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
D | v3_addr.c | 1193 rv = ctx->verify_cb(0, ctx); \ 1219 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in addr_validate_path_internal() 1334 || ctx->verify_cb == NULL) { in X509v3_addr_validate_path()
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_dane_enable.pod | 197 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);
|
D | X509_STORE_set_verify_cb_func.pod | 62 X509_STORE_CTX_verify_cb verify_cb); 117 X509_STORE_CTX_verify_cb verify_cb); 126 I<verify_cb> overwriting the previous callback.
|
D | X509_STORE_CTX_set_verify_cb.pod | 31 X509_STORE_CTX_verify_cb verify_cb); 47 B<verify_cb> overwriting any existing callback.
|
/third_party/openssl/ohos_lite/include/crypto/ |
D | x509.h | 211 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
/third_party/openssl/apps/ |
D | ts.c | 77 static int verify_cb(int ok, X509_STORE_CTX *ctx); 983 X509_STORE_set_verify_cb(cert_ctx, verify_cb); in create_cert_store() 1031 static int verify_cb(int ok, X509_STORE_CTX *ctx) in verify_cb() function
|
/third_party/node/deps/openssl/openssl/apps/ |
D | ts.c | 77 static int verify_cb(int ok, X509_STORE_CTX *ctx); 983 X509_STORE_set_verify_cb(cert_ctx, verify_cb); in create_cert_store() 1031 static int verify_cb(int ok, X509_STORE_CTX *ctx) in verify_cb() function
|
/third_party/openssl/util/ |
D | check-format-test-negatives.c | 305 return ctx->verify_cb(0, ctx); in verify_cb_crl()
|
/third_party/node/deps/openssl/openssl/util/ |
D | check-format-test-negatives.c | 305 return ctx->verify_cb(0, ctx); in verify_cb_crl()
|
/third_party/node/deps/openssl/openssl/include/crypto/ |
D | x509.h | 231 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
/third_party/openssl/include/crypto/ |
D | x509.h | 231 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
/third_party/python/Modules/ |
D | _ssl.c | 860 int (*verify_cb)(int, X509_STORE_CTX *) = NULL; in newPySSLSocket() local 861 verify_cb = SSL_get_verify_callback(self->ssl); in newPySSLSocket() 863 SSL_set_verify(self->ssl, mode, verify_cb); in newPySSLSocket() 2940 int (*verify_cb)(int, X509_STORE_CTX *) = NULL; in _set_verify_mode() local 2962 verify_cb = SSL_CTX_get_verify_callback(self->ctx); in _set_verify_mode() 2963 SSL_CTX_set_verify(self->ctx, mode, verify_cb); in _set_verify_mode()
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | x509_vfy.h | 293 X509_STORE_CTX_verify_cb verify_cb);
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | types.rs | 360 verify_cb: Option<extern "C" fn(ok: c_int, ctx: *mut X509_STORE_CTX) -> c_int>,
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/ |
D | x509_vfy.h | 517 X509_STORE_CTX_verify_cb verify_cb);
|
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/ |
D | x509_vfy.h | 517 X509_STORE_CTX_verify_cb verify_cb);
|