Home
last modified time | relevance | path

Searched refs:X509_STORE_CTX (Results 1 – 25 of 28) sorted by relevance

12

/external/boringssl/src/include/openssl/
Dx509_vfy.h161 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 …]
Dbase.h410 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef
Dssl.h2269 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),
Dx509.h1070 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/
Dx509_vfy.c115 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 …]
Dx509_lu.c298 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()
Dx509_test.cc738 bssl::UniquePtr<X509_STORE_CTX> ctx(X509_STORE_CTX_new()); in Verify()
/external/webrtc/webrtc/base/
Dopenssladapter.h21 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef
73 static int SSLVerifyCallback(int ok, X509_STORE_CTX* store);
Dopensslstreamadapter.h24 typedef struct x509_store_ctx_st X509_STORE_CTX; typedef
172 static int SSLVerifyCallback(int ok, X509_STORE_CTX* store);
Dopenssladapter.cc871 OpenSSLAdapter::SSLVerifyCallback(int ok, X509_STORE_CTX* store) { in SSLVerifyCallback()
Dopensslstreamadapter.cc1027 int OpenSSLStreamAdapter::SSLVerifyCallback(int ok, X509_STORE_CTX* store) { in SSLVerifyCallback()
/external/python/cpython2/Lib/lib2to3/tests/data/
Dinfinite_recursion.py860 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/
Dinfinite_recursion.py860 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/
Dtls_stream.cc115 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/
Dssl_x509.cc628 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
Dinternal.h2487 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/
Dserver.cc318 ctx.get(), [](X509_STORE_CTX *store, void *arg) -> int { return 1; }, in Server()
/external/ipsec-tools/src/racoon/
Dcrypto_openssl.c127 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/
Dhttps-client.c124 static int cert_verify_callback(X509_STORE_CTX *x509_ctx, void *arg) in cert_verify_callback()
/external/boringssl/src/ssl/test/
Dfuzzer.h403 [](X509_STORE_CTX *store_ctx, void *arg) -> int { return 1; }, nullptr); in Init()
Dtest_config.cc655 static int CertVerifyCallback(X509_STORE_CTX *store_ctx, void *arg) { in CertVerifyCallback()
/external/curl/docs/examples/
Dcurlx.c190 static int ssl_app_verify_callback(X509_STORE_CTX *ctx, void *arg) in ssl_app_verify_callback()
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl_ocsp.c505 X509_STORE_CTX ctx; in check_ocsp_resp()
/external/wpa_supplicant_8/src/utils/
Dhttp_curl.c993 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/
Dssl_transport_security.cc759 static int NullVerifyCallback(int preverify_ok, X509_STORE_CTX* ctx) { in NullVerifyCallback()

12