Home
last modified time | relevance | path

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

/aosp12/packages/modules/adb/tls/tests/
H A Dtls_connection_test.cpp292 server_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in TEST_F() argument
293 client_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in TEST_F() argument
373 client_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in TEST_F() argument
402 server_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in TEST_F() argument
403 client_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in TEST_F() argument
427 client_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in TEST_F() argument
429 server_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 0; }); in TEST_F() argument
442 client_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in TEST_F() argument
446 server_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 0; }); in TEST_F() argument
458 client_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 0; }); in TEST_F() argument
[all …]
/aosp12/system/update_engine/
H A Dcertificate_checker.h48 virtual bool GetCertificateDigest(X509_STORE_CTX* x509_ctx,
138 X509_STORE_CTX* x509_ctx);
140 X509_STORE_CTX* x509_ctx);
142 X509_STORE_CTX* x509_ctx,
151 X509_STORE_CTX* x509_ctx,
H A Dcertificate_checker.cc37 bool OpenSSLWrapper::GetCertificateDigest(X509_STORE_CTX* x509_ctx, in GetCertificateDigest()
95 int (*verify_callback)(int, X509_STORE_CTX*); in ProcessSSLContext()
114 X509_STORE_CTX* x509_ctx) { in VerifySSLCallbackDownload()
120 X509_STORE_CTX* x509_ctx) { in VerifySSLCallbackUpdate()
126 X509_STORE_CTX* x509_ctx, in VerifySSLCallback()
136 X509_STORE_CTX* x509_ctx, in CheckCertificateChange()
H A Dmock_certificate_checker.h30 bool(X509_STORE_CTX* x509_ctx,
/aosp12/packages/modules/adb/
H A Dadb_auth.h66 int adbd_tls_verify_cert(X509_STORE_CTX* ctx, std::string* auth_key);
H A Dtransport.cpp526 tls_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in DoTlsHandshake() argument
530 [auth_key](X509_STORE_CTX* ctx) { return adbd_tls_verify_cert(ctx, auth_key); }); in DoTlsHandshake()
/aosp12/packages/modules/adb/tls/include/adb/tls/
H A Dtls_connection.h51 using CertVerifyCb = std::function<int(X509_STORE_CTX*)>;
/aosp12/packages/modules/adb/tls/
H A Dtls_connection.cpp57 static int SSLSetCertVerifyCb(X509_STORE_CTX* ctx, void* opaque);
142 int TlsConnectionImpl::SSLSetCertVerifyCb(X509_STORE_CTX* ctx, void* opaque) { in SSLSetCertVerifyCb()
/aosp12/packages/modules/adb/daemon/
H A Dauth.cpp301 int adbd_tls_verify_cert(X509_STORE_CTX* ctx, std::string* auth_key) { in adbd_tls_verify_cert()
/aosp12/packages/modules/adb/pairing_connection/
H A Dpairing_connection.cpp181 tls_->SetCertVerifyCallback([](X509_STORE_CTX*) { return 1; }); in SetupTlsConnection() argument