Home
last modified time | relevance | path

Searched refs:verify_cb (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/x509/
Dx509_vfy.c208 cb = ctx->verify_cb; in X509_verify_cert()
560 return ctx->verify_cb(0, ctx); in check_issued()
588 cb = ctx->verify_cb; in check_chain_extensions()
743 if (!ctx->verify_cb(0, ctx)) in check_name_constraints()
758 return ctx->verify_cb(0, ctx); in check_id_error()
810 cb = ctx->verify_cb; in check_trust()
902 ok = ctx->verify_cb(0, ctx); in check_cert()
937 ok = ctx->verify_cb(0, ctx); in check_cert()
968 if (!ctx->verify_cb(0, ctx)) in check_crl_time()
976 if (!ctx->verify_cb(0, ctx)) in check_crl_time()
[all …]
Dx509_lu.c722 X509_STORE_CTX_verify_cb verify_cb) in X509_STORE_set_verify_cb() argument
724 ctx->verify_cb = verify_cb; in X509_STORE_set_verify_cb()
729 return ctx->verify_cb; in X509_STORE_get_verify_cb()
/external/boringssl/src/include/openssl/
Dx509_vfy.h198 X509_STORE_CTX_verify_cb verify_cb; /* error callback */ member
242 X509_STORE_CTX_verify_cb verify_cb; /* error callback */ member
468 X509_STORE *ctx, X509_STORE_CTX_verify_cb verify_cb);
593 int (*verify_cb)(int, X509_STORE_CTX *));
/external/python/cpython3/Modules/
D_ssl.c2914 int (*verify_cb)(int, X509_STORE_CTX *) = NULL; in _set_verify_mode() local
2936 verify_cb = SSL_CTX_get_verify_callback(self->ctx); in _set_verify_mode()
2937 SSL_CTX_set_verify(self->ctx, mode, verify_cb); in _set_verify_mode()
3631 int (*verify_cb)(int, X509_STORE_CTX *) = NULL; in set_post_handshake_auth() local
3648 verify_cb = SSL_CTX_get_verify_callback(self->ctx); in set_post_handshake_auth()
3654 SSL_CTX_set_verify(self->ctx, mode, verify_cb); in set_post_handshake_auth()