HomeSort by relevance Sort by last modified time
    Searched refs:CertVerifyProc (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/net/cert/
cert_verifier.cc 13 return new MultiThreadedCertVerifier(CertVerifyProc::CreateDefault());
cert_verify_proc.h 26 class NET_EXPORT CertVerifyProc
27 : public base::RefCountedThreadSafe<CertVerifyProc> {
29 // Creates and returns the default CertVerifyProc.
30 static CertVerifyProc* CreateDefault();
70 CertVerifyProc();
71 virtual ~CertVerifyProc();
74 friend class base::RefCountedThreadSafe<CertVerifyProc>;
102 DISALLOW_COPY_AND_ASSIGN(CertVerifyProc);
cert_verify_proc_android.h 14 class CertVerifyProcAndroid : public CertVerifyProc {
cert_verify_proc_mac.h 14 class CertVerifyProcMac : public CertVerifyProc {
cert_verify_proc_nss.h 14 class NET_EXPORT_PRIVATE CertVerifyProcNSS : public CertVerifyProc {
cert_verify_proc_openssl.h 13 class CertVerifyProcOpenSSL : public CertVerifyProc {
cert_verify_proc_win.h 14 class CertVerifyProcWin : public CertVerifyProc {
multi_threaded_cert_verifier.h 31 class CertVerifyProc;
40 explicit MultiThreadedCertVerifier(CertVerifyProc* verify_proc);
48 // CertVerifyProc supports additional trust beyond the default implementation.
160 scoped_refptr<CertVerifyProc> verify_proc_;
test_root_certs_unittest.cc 91 scoped_refptr<CertVerifyProc> verify_proc(CertVerifyProc::CreateDefault());
cert_verify_proc.cc 167 CertVerifyProc* CertVerifyProc::CreateDefault() {
183 CertVerifyProc::CertVerifyProc() {}
185 CertVerifyProc::~CertVerifyProc() {}
187 int CertVerifyProc::Verify(X509Certificate* cert,
282 bool CertVerifyProc::IsBlacklisted(X509Certificate* cert) {
352 bool CertVerifyProc::IsPublicKeyBlacklisted(
473 bool CertVerifyProc::HasNameConstraintsViolation
    [all...]
nss_cert_database_unittest.cc 547 scoped_refptr<CertVerifyProc> verify_proc(new CertVerifyProcNSS());
578 scoped_refptr<CertVerifyProc> verify_proc(new CertVerifyProcNSS());
617 scoped_refptr<CertVerifyProc> verify_proc(new CertVerifyProcNSS());
653 scoped_refptr<CertVerifyProc> verify_proc(new CertVerifyProcNSS());
701 scoped_refptr<CertVerifyProc> verify_proc(new CertVerifyProcNSS());
749 scoped_refptr<CertVerifyProc> verify_proc(new CertVerifyProcNSS());
831 scoped_refptr<CertVerifyProc> verify_proc(new CertVerifyProcNSS());
    [all...]
multi_threaded_cert_verifier.cc 186 CertVerifierWorker(CertVerifyProc* verify_proc,
295 scoped_refptr<CertVerifyProc> verify_proc_;
392 CertVerifyProc* verify_proc)
cert_verify_proc_unittest.cc 47 // Mock CertVerifyProc that will set |verify_result->is_issued_by_known_root|
49 class WellKnownCaCertVerifyProc : public CertVerifyProc {
51 // Initialize a CertVerifyProc that will set
56 // CertVerifyProc implementation:
91 : verify_proc_(CertVerifyProc::CreateDefault()) {
111 scoped_refptr<CertVerifyProc> verify_proc_;
522 EXPECT_TRUE(CertVerifyProc::IsPublicKeyBlacklisted(public_keys)) <<
    [all...]
multi_threaded_cert_verifier_unittest.cc 34 class MockCertVerifyProc : public CertVerifyProc {
41 // CertVerifyProc implementation
  /external/chromium_org/chrome/browser/chromeos/policy/
policy_cert_verifier.cc 54 scoped_refptr<net::CertVerifyProc> verify_proc =
55 net::CertVerifyProc::CreateDefault();
policy_cert_verifier_browsertest.cc 77 scoped_refptr<net::CertVerifyProc> proc =
78 net::CertVerifyProc::CreateDefault();
  /external/chromium_org/net/ocsp/
nss_ocsp_unittest.cc 122 scoped_refptr<CertVerifyProc> verify_proc_;

Completed in 610 milliseconds