Searched refs:verify_cb (Results 1 – 13 of 13) sorted by relevance
/openssl-master/crypto/x509/ |
A 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() 1337 crl_ctx.verify_cb = ctx->verify_cb; in check_crl_path() 1673 return ctx->verify_cb(0, ctx); in check_policy() 1688 if (!ctx->verify_cb(2, ctx)) in check_policy() 1834 if (!ctx->verify_cb(1, ctx)) in internal_verify() 2365 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init() 2367 ctx->verify_cb = null_callback; in X509_STORE_CTX_init() 2533 ctx->verify_cb = verify_cb; in X509_STORE_CTX_set_verify_cb() 2538 return ctx->verify_cb; in X509_STORE_CTX_get_verify_cb() [all …]
|
A D | x509_lu.c | 824 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_set_verify_cb() argument 826 ctx->verify_cb = verify_cb; in X509_STORE_set_verify_cb() 831 return ctx->verify_cb; in X509_STORE_get_verify_cb()
|
A D | x509_local.h | 125 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
A D | v3_asid.c | 712 ret = ctx->verify_cb(0, ctx); \ 733 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in asid_validate_path_internal() 860 || ctx->verify_cb == NULL) { in X509v3_asid_validate_path()
|
A D | v3_addr.c | 1155 ret = ctx->verify_cb(0, ctx); \ 1181 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in addr_validate_path_internal() 1285 || ctx->verify_cb == NULL) { in X509v3_addr_validate_path()
|
/openssl-master/doc/man3/ |
A 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);
|
A 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.
|
A D | X509_STORE_CTX_set_verify_cb.pod | 31 X509_STORE_CTX_verify_cb verify_cb); 47 B<verify_cb> overwriting any existing callback.
|
/openssl-master/apps/ |
A D | ts.c | 77 static int verify_cb(int ok, X509_STORE_CTX *ctx); 979 X509_STORE_set_verify_cb(cert_ctx, verify_cb); in create_cert_store() 1027 static int verify_cb(int ok, X509_STORE_CTX *ctx) in verify_cb() function
|
/openssl-master/include/crypto/ |
A D | x509.h | 231 int (*verify_cb) (int ok, X509_STORE_CTX *ctx); member
|
/openssl-master/include/openssl/ |
A D | x509_vfy.h.in | 420 X509_STORE_CTX_verify_cb verify_cb);
|
/openssl-master/test/ |
A D | sslapitest.c | 5563 static int verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx) in verify_cb() function 5622 verify_cb); in test_custom_exts() 8207 verify_cb); in test_client_cert_cb()
|
/openssl-master/ |
A D | CHANGES.md | 15074 The verify_cb() and verify() callbacks now have equivalents
|
Completed in 81 milliseconds