/external/boringssl/src/include/openssl/ |
D | x509_vfy.h | 161 typedef int (*X509_STORE_CTX_verify_cb)(int, X509_STORE_CTX *); 162 typedef int (*X509_STORE_CTX_verify_fn)(X509_STORE_CTX *); 164 X509_STORE_CTX *ctx, X509 *x); 165 typedef int (*X509_STORE_CTX_check_issued_fn)(X509_STORE_CTX *ctx, 167 typedef int (*X509_STORE_CTX_check_revocation_fn)(X509_STORE_CTX *ctx); 168 typedef int (*X509_STORE_CTX_get_crl_fn)(X509_STORE_CTX *ctx, 170 typedef int (*X509_STORE_CTX_check_crl_fn)(X509_STORE_CTX *ctx, X509_CRL *crl); 171 typedef int (*X509_STORE_CTX_cert_crl_fn)(X509_STORE_CTX *ctx, 173 typedef int (*X509_STORE_CTX_check_policy_fn)(X509_STORE_CTX *ctx); 174 typedef STACK_OF(X509) *(*X509_STORE_CTX_lookup_certs_fn)(X509_STORE_CTX *ctx, [all …]
|
D | base.h | 410 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef
|
D | ssl.h | 2269 SSL_CTX *ctx, int mode, int (*callback)(int ok, X509_STORE_CTX *store_ctx)); 2280 X509_STORE_CTX *store_ctx)); 2326 int ok, X509_STORE_CTX *store_ctx); 2331 int ok, X509_STORE_CTX *store_ctx); 2436 SSL_CTX *ctx, int (*callback)(X509_STORE_CTX *store_ctx, void *arg),
|
D | x509.h | 1070 OPENSSL_EXPORT int X509_verify_cert(X509_STORE_CTX *ctx); 1154 BORINGSSL_MAKE_DELETER(X509_STORE_CTX, X509_STORE_CTX_free) 1158 internal::StackAllocated<X509_STORE_CTX, void, X509_STORE_CTX_zero,
|
/external/boringssl/src/crypto/x509/ |
D | x509_vfy.c | 115 static int null_callback(int ok, X509_STORE_CTX *e); 116 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); 117 static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x); 118 static int check_chain_extensions(X509_STORE_CTX *ctx); 119 static int check_name_constraints(X509_STORE_CTX *ctx); 120 static int check_id(X509_STORE_CTX *ctx); 121 static int check_trust(X509_STORE_CTX *ctx); 122 static int check_revocation(X509_STORE_CTX *ctx); 123 static int check_cert(X509_STORE_CTX *ctx); 124 static int check_policy(X509_STORE_CTX *ctx); [all …]
|
D | x509_lu.c | 298 int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type, X509_NAME *name, in X509_STORE_get_by_subject() 517 STACK_OF (X509) * X509_STORE_get1_certs(X509_STORE_CTX *ctx, X509_NAME *nm) in STACK_OF() 563 STACK_OF (X509_CRL) * X509_STORE_get1_crls(X509_STORE_CTX *ctx, X509_NAME *nm) in STACK_OF() 638 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x) in X509_STORE_CTX_get1_issuer() 831 X509_STORE *X509_STORE_CTX_get0_store(X509_STORE_CTX *ctx) in X509_STORE_CTX_get0_store()
|
D | x509_test.cc | 738 bssl::UniquePtr<X509_STORE_CTX> ctx(X509_STORE_CTX_new()); in Verify()
|
/external/webrtc/webrtc/base/ |
D | openssladapter.h | 21 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef 73 static int SSLVerifyCallback(int ok, X509_STORE_CTX* store);
|
D | opensslstreamadapter.h | 24 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef 172 static int SSLVerifyCallback(int ok, X509_STORE_CTX* store);
|
D | openssladapter.cc | 871 OpenSSLAdapter::SSLVerifyCallback(int ok, X509_STORE_CTX* store) { in SSLVerifyCallback()
|
D | opensslstreamadapter.cc | 1027 int OpenSSLStreamAdapter::SSLVerifyCallback(int ok, X509_STORE_CTX* store) { in SSLVerifyCallback()
|
/external/python/cpython2/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 860 X509_STORE_CTX = x509_store_ctx_st variable 1301 ('app_verify_callback', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX), c_void_p)), 1325 ('default_verify_callback', CFUNCTYPE(c_int, c_int, POINTER(X509_STORE_CTX))), 1384 ('verify_callback', CFUNCTYPE(c_int, c_int, POINTER(X509_STORE_CTX))), 1960 ('verify', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX))), 1961 ('verify_cb', CFUNCTYPE(c_int, c_int, POINTER(X509_STORE_CTX))), 1962 … ('get_issuer', CFUNCTYPE(c_int, POINTER(POINTER(X509)), POINTER(X509_STORE_CTX), POINTER(X509))), 1963 ('check_issued', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX), POINTER(X509), POINTER(X509))), 1964 ('check_revocation', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX))), 1965 … ('get_crl', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX), POINTER(POINTER(X509_CRL)), POINTER(X509))), [all …]
|
/external/python/cpython3/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 860 X509_STORE_CTX = x509_store_ctx_st variable 1301 ('app_verify_callback', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX), c_void_p)), 1325 ('default_verify_callback', CFUNCTYPE(c_int, c_int, POINTER(X509_STORE_CTX))), 1384 ('verify_callback', CFUNCTYPE(c_int, c_int, POINTER(X509_STORE_CTX))), 1960 ('verify', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX))), 1961 ('verify_cb', CFUNCTYPE(c_int, c_int, POINTER(X509_STORE_CTX))), 1962 … ('get_issuer', CFUNCTYPE(c_int, POINTER(POINTER(X509)), POINTER(X509_STORE_CTX), POINTER(X509))), 1963 ('check_issued', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX), POINTER(X509), POINTER(X509))), 1964 ('check_revocation', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX))), 1965 … ('get_crl', CFUNCTYPE(c_int, POINTER(X509_STORE_CTX), POINTER(POINTER(X509_CRL)), POINTER(X509))), [all …]
|
/external/libbrillo/brillo/streams/ |
D | tls_stream.cc | 115 int OnCertVerifyResults(int ok, X509_STORE_CTX* ctx); 116 static int OnCertVerifyResultsStatic(int ok, X509_STORE_CTX* ctx); 308 int TlsStream::TlsStreamImpl::OnCertVerifyResults(int ok, X509_STORE_CTX* ctx) { in OnCertVerifyResults() 325 X509_STORE_CTX* ctx) { in OnCertVerifyResultsStatic()
|
/external/boringssl/src/ssl/ |
D | ssl_x509.cc | 628 int (*SSL_get_verify_callback(const SSL *ssl))(int, X509_STORE_CTX *) { in SSL_get_verify_callback() 648 int ok, X509_STORE_CTX *store_ctx) { in SSL_CTX_get_verify_callback() 654 int (*callback)(int ok, X509_STORE_CTX *store_ctx)) { in SSL_set_verify() 674 int (*cb)(X509_STORE_CTX *store_ctx, in SSL_CTX_set_cert_verify_callback() 683 int (*cb)(int, X509_STORE_CTX *)) { in SSL_CTX_set_verify() argument
|
D | internal.h | 2487 X509_STORE_CTX *ctx) = 2947 int (*app_verify_callback)(X509_STORE_CTX *store_ctx, void *arg) = nullptr; 2998 int (*default_verify_callback)(int ok, X509_STORE_CTX *ctx) =
|
/external/boringssl/src/tool/ |
D | server.cc | 318 ctx.get(), [](X509_STORE_CTX *store, void *arg) -> int { return 1; }, in Server()
|
/external/ipsec-tools/src/racoon/ |
D | crypto_openssl.c | 127 static int cb_check_cert_local __P((int, X509_STORE_CTX *)); 128 static int cb_check_cert_remote __P((int, X509_STORE_CTX *)); 470 X509_STORE_CTX *csc; 569 X509_STORE_CTX *ctx; 616 X509_STORE_CTX *ctx;
|
/external/libevent/sample/ |
D | https-client.c | 124 static int cert_verify_callback(X509_STORE_CTX *x509_ctx, void *arg) in cert_verify_callback()
|
/external/boringssl/src/ssl/test/ |
D | fuzzer.h | 403 [](X509_STORE_CTX *store_ctx, void *arg) -> int { return 1; }, nullptr); in Init()
|
D | test_config.cc | 655 static int CertVerifyCallback(X509_STORE_CTX *store_ctx, void *arg) { in CertVerifyCallback()
|
/external/curl/docs/examples/ |
D | curlx.c | 190 static int ssl_app_verify_callback(X509_STORE_CTX *ctx, void *arg) in ssl_app_verify_callback()
|
/external/wpa_supplicant_8/src/crypto/ |
D | tls_openssl_ocsp.c | 505 X509_STORE_CTX ctx; in check_ocsp_resp()
|
/external/wpa_supplicant_8/src/utils/ |
D | http_curl.c | 993 static int curl_cb_ssl_verify(int preverify_ok, X509_STORE_CTX *x509_ctx) in curl_cb_ssl_verify()
|
/external/grpc-grpc/src/core/tsi/ |
D | ssl_transport_security.cc | 759 static int NullVerifyCallback(int preverify_ok, X509_STORE_CTX* ctx) { in NullVerifyCallback()
|