| /freebsd/crypto/openssl/crypto/x509/ |
| H A D | x509_vfy.c | 167 return ctx->verify_cb(0, ctx); in verify_cb_cert() 184 return ctx->verify_cb(0, ctx); in verify_cb_crl() 225 return !!ctx->verify_cb(ctx->error == X509_V_OK, ctx); in verify_rpk() 1492 crl_ctx.verify_cb = ctx->verify_cb; in check_crl_path() 1831 return ctx->verify_cb(0, ctx); in check_policy() 1846 if (!ctx->verify_cb(2, ctx)) in check_policy() 1903 if (!ctx->verify_cb(ctx->error == X509_V_OK, ctx)) in internal_verify() 2003 if (!ctx->verify_cb(1, ctx)) in internal_verify() 2560 if (store != NULL && store->verify_cb != NULL) in X509_STORE_CTX_init() 2561 ctx->verify_cb = store->verify_cb; in X509_STORE_CTX_init() [all …]
|
| H A D | x509_lu.c | 825 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_set_verify_cb() argument 827 xs->verify_cb = verify_cb; in X509_STORE_set_verify_cb() 832 return xs->verify_cb; in X509_STORE_get_verify_cb()
|
| H A D | v3_asid.c | 708 ret = ctx->verify_cb(0, ctx); \ 729 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in asid_validate_path_internal() 848 || ctx->verify_cb == NULL) { in X509v3_asid_validate_path()
|
| H A D | x509_local.h | 125 int (*verify_cb)(int ok, X509_STORE_CTX *ctx); member
|
| H A D | v3_addr.c | 1196 rv = ctx->verify_cb(0, ctx); \ 1222 || !ossl_assert(ctx == NULL || ctx->verify_cb != NULL)) { in addr_validate_path_internal() 1336 || ctx->verify_cb == NULL) { in X509v3_addr_validate_path()
|
| /freebsd/crypto/openssl/test/ |
| H A D | cert_comp_test.c | 77 static int verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx) in verify_cb() function 185 SSL_CTX_set_verify(sctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb); in test_ssl_cert_comp()
|
| H A D | sslapitest.c | 6370 static int verify_cb(int preverify_ok, X509_STORE_CTX *x509_ctx) in verify_cb() function 6428 verify_cb); in test_custom_exts() 9660 verify_cb); in test_client_cert_cb()
|
| /freebsd/crypto/openssl/crypto/cmp/ |
| H A D | cmp_genm.c | 215 X509_STORE_CTX_verify_cb verify_cb; in selfsigned_verify_cb() local 217 if (ts == NULL || (verify_cb = X509_STORE_get_verify_cb(ts)) == NULL) in selfsigned_verify_cb() 219 return (*verify_cb)(ok, store_ctx); in selfsigned_verify_cb()
|
| H A D | cmp_vfy.c | 148 X509_STORE_CTX_verify_cb verify_cb; in verify_cb_cert() local 152 if (ts == NULL || (verify_cb = X509_STORE_get_verify_cb(ts)) == NULL) in verify_cb_cert() 158 ok = (*verify_cb)(0, csc); in verify_cb_cert()
|
| /freebsd/crypto/openssl/doc/man3/ |
| H 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);
|
| H 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.
|
| H A D | X509_STORE_CTX_set_verify_cb.pod | 33 X509_STORE_CTX_verify_cb verify_cb); 56 B<verify_cb> overwriting any existing callback.
|
| H A D | X509_verify_cert.pod | 200 int (*verify_cb)(int ok, X509_STORE_CTX *ctx);
|
| /freebsd/crypto/openssl/apps/ |
| H A D | ts.c | 75 static int verify_cb(int ok, X509_STORE_CTX *ctx); 1009 X509_STORE_set_verify_cb(cert_ctx, verify_cb); in create_cert_store() 1058 static int verify_cb(int ok, X509_STORE_CTX *ctx) in verify_cb() function
|
| /freebsd/crypto/openssl/include/crypto/ |
| H A D | x509.h | 231 int (*verify_cb)(int ok, X509_STORE_CTX *ctx); member
|
| /freebsd/crypto/openssl/include/openssl/ |
| H A D | x509_vfy.h | 526 X509_STORE_CTX_verify_cb verify_cb);
|
| H A D | x509_vfy.h.in | 429 X509_STORE_CTX_verify_cb verify_cb);
|
| /freebsd/crypto/openssl/ |
| H A D | CHANGES.md | 18379 The verify_cb() and verify() callbacks now have equivalents
|