/external/chromium_org/net/cert/ |
cert_verify_proc_nss.h | 31 CRLSet* crl_set, 40 CRLSet* crl_set,
|
cert_verify_proc_android.h | 27 CRLSet* crl_set,
|
cert_verify_proc_mac.h | 27 CRLSet* crl_set,
|
cert_verify_proc_openssl.h | 26 CRLSet* crl_set,
|
cert_verify_proc_win.h | 27 CRLSet* crl_set,
|
cert_verify_proc.h | 46 // |crl_set| is given. 51 // |crl_set| points to an optional CRLSet structure which can be used to 60 CRLSet* crl_set, 82 CRLSet* crl_set,
|
cert_verifier.h | 93 // |crl_set| points to an optional CRLSet structure which can be used to 107 CRLSet* crl_set,
|
single_request_cert_verifier.h | 30 CRLSet* crl_set,
|
crl_set.cc | 16 #include "net/cert/crl_set.h" 255 scoped_refptr<CRLSet> crl_set(new CRLSet()); 256 crl_set->sequence_ = static_cast<uint32>(sequence); 257 crl_set->not_after_ = static_cast<uint64>(not_after); 258 crl_set->crls_.reserve(64); // Value observed experimentally. 263 crl_set->crls_.push_back( 266 &crl_set->crls_.back(); 270 crl_set->crls_.pop_back(); 274 crl_set->crls_index_by_issuer_[back_pair->first] = crl_index; 277 if (!crl_set->CopyBlockedSPKIsFromHeader(header_dict.get()) 617 CRLSet* crl_set = new CRLSet; local [all...] |
single_request_cert_verifier.cc | 31 CRLSet* crl_set, 43 cert, hostname, flags, crl_set, verify_result,
|
mock_cert_verifier.h | 31 CRLSet* crl_set,
|
mock_cert_verifier.cc | 42 CRLSet* crl_set,
|
cert_verify_proc_nss.cc | 26 #include "net/cert/crl_set.h" 255 // against |crl_set|. It returns: 263 CRLSet* crl_set) { 300 CRLSet::Result result = crl_set->CheckSPKI(spki_hash); 303 result = crl_set->CheckSerial(serial_number, issuer_spki_hash); 322 if (!covered || crl_set->IsExpired()) 665 CRLSet* crl_set, 705 if (crl_set) { 709 crl_set); 753 CRLSet* crl_set, [all...] |
cert_verify_proc_win.cc | 22 #include "net/cert/crl_set.h" 386 // against |crl_set|. It returns: 393 CRLSet* crl_set) { 433 CRLSet::Result result = crl_set->CheckSPKI(spki_hash); 436 result = crl_set->CheckSerial(serial, issuer_spki_hash); 455 if (!covered || crl_set->IsExpired()) 547 CRLSet* crl_set, 635 if (crl_set) 636 crl_set_result = CheckRevocationWithCRLSet(chain_context, crl_set);
|
cert_verify_proc_mac.cc | 27 #include "net/cert/crl_set.h" 265 bool CheckRevocationWithCRLSet(CFArrayRef chain, CRLSet* crl_set) { 307 CRLSet::Result result = crl_set->CheckSPKI(spki_hash); 310 result = crl_set->CheckSerial(serial, issuer_spki_hash); 530 CRLSet* crl_set, 569 if (crl_set && !CheckRevocationWithCRLSet(completed_chain, crl_set))
|
multi_threaded_cert_verifier.cc | 24 #include "net/cert/crl_set.h" 221 CRLSet* crl_set, 228 crl_set_(crl_set), 459 CRLSet* crl_set, 505 crl_set,
|
/external/chromium_org/chrome/browser/chromeos/net/ |
cert_verify_proc_chromeos.h | 39 net::CRLSet* crl_set,
|
cert_verify_proc_chromeos.cc | 41 net::CRLSet* crl_set, 55 crl_set,
|
/external/chromium_org/net/tools/crl_set_dump/ |
crl_set_dump.cc | 18 #include "net/cert/crl_set.h" 48 scoped_refptr<net::CRLSet> crl_set, final_crl_set; local 49 if (!net::CRLSet::Parse(crl_set_bytes, &crl_set)) { 55 if (!crl_set->ApplyDelta(delta_bytes, &final_crl_set)) { 60 final_crl_set = crl_set;
|
/external/chromium_org/net/ssl/ |
ssl_config_service.h | 13 #include "net/cert/crl_set.h" 50 static void SetCRLSet(scoped_refptr<CRLSet> crl_set);
|
ssl_config_service.cc | 40 void SSLConfigService::SetCRLSet(scoped_refptr<CRLSet> crl_set) { 42 g_crl_set.Get().Set(crl_set);
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
policy_cert_verifier.h | 53 net::CRLSet* crl_set,
|
policy_cert_verifier.cc | 75 net::CRLSet* crl_set, 87 int error = delegate_->Verify(cert, hostname, flags, crl_set, verify_result,
|
/external/chromium_org/chrome/browser/net/ |
crl_set_fetcher.h | 61 void SetCRLSetIfNewer(scoped_refptr<net::CRLSet> crl_set);
|
crl_set_fetcher.cc | 20 #include "net/cert/crl_set.h" 114 scoped_refptr<net::CRLSet> crl_set) { 118 if (old_crl_set.get() && old_crl_set->sequence() > crl_set->sequence()) { 122 << crl_set->sequence(); 124 net::SSLConfigService::SetCRLSet(crl_set); 125 VLOG(1) << "Installed CRL set #" << crl_set->sequence();
|