/third_party/openssl/crypto/x509/ |
D | x509_vfy.c | 163 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 …]
|
D | x509_lu.c | 789 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()
|
D | x509_local.h | 116 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
/third_party/openssl/doc/man3/ |
D | X509_STORE_set_verify_cb_func.pod | 60 X509_STORE_CTX_verify_cb verify_cb); 108 X509_STORE_CTX_verify_cb verify_cb); 117 B<verify_cb> overwriting the previous callback.
|
D | X509_STORE_CTX_set_verify_cb.pod | 29 X509_STORE_CTX_verify_cb verify_cb); 45 B<verify_cb> overwriting any existing callback.
|
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);
|
/third_party/openssl/crypto/x509v3/ |
D | v3_asid.c | 723 ret = ctx->verify_cb(0, ctx); \ 744 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in asid_validate_path_internal() 871 || ctx->verify_cb == NULL) { in X509v3_asid_validate_path()
|
D | v3_addr.c | 1161 ret = ctx->verify_cb(0, ctx); \ 1187 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in addr_validate_path_internal() 1292 || ctx->verify_cb == NULL) { in X509v3_addr_validate_path()
|
/third_party/openssl/include/crypto/ |
D | x509.h | 211 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
/third_party/openssl/apps/ |
D | ts.c | 75 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
|
/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/include/openssl/ |
D | x509_vfy.h | 293 X509_STORE_CTX_verify_cb verify_cb);
|
/third_party/nghttp2/src/ |
D | nghttp.cc | 655 int verify_cb(int preverify_ok, X509_STORE_CTX *ctx) { return 1; } in verify_cb() function 697 SSL_set_verify(ssl, SSL_VERIFY_PEER, verify_cb); in initiate_connection()
|
/third_party/openssl/test/ |
D | sslapitest.c | 4113 static int verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx) in verify_cb() function 4172 verify_cb); in test_custom_exts() 6307 verify_cb); in test_client_cert_cb()
|
/third_party/libsoup/ |
D | ChangeLog.pre-git | 6744 * libsoup/soup-openssl.c (verify_cb): Load some X509 and SSL error
|
/third_party/openssl/ |
D | CHANGES | 10499 The verify_cb() and verify() callbacks now have equivalents
|