HomeSort by relevance Sort by last modified time
    Searched refs:CRLSet (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/net/cert/
crl_set.h 24 // A CRLSet is a structure that lists the serial numbers of revoked
27 class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> {
35 // Parse parses the bytes in |data| and, on success, puts a new CRLSet in
38 scoped_refptr<CRLSet>* out_crl_set);
54 // specified in the CRLSet.
57 // ApplyDelta returns a new CRLSet in |out_crl_set| that is the result of
60 scoped_refptr<CRLSet>* out_crl_set);
68 // and serializing a CRLSet is a lossless operation - the resulting bytes
82 // crls returns the internal state of this CRLSet. It should only be used i
    [all...]
cert_verifier.h 18 class CRLSet;
55 // chain is not covered by a fresh CRLSet, but only for certificates which
93 // |crl_set| points to an optional CRLSet structure which can be used to
103 // TODO(rsleevi): Move CRLSet* out of the CertVerifier signature.
107 CRLSet* crl_set,
cert_verify_proc.h 19 class CRLSet;
44 // revocation checking is performed (i.e. OCSP and downloading CRLs). CRLSet
51 // |crl_set| points to an optional CRLSet structure which can be used to
60 CRLSet* crl_set,
82 CRLSet* crl_set,
cert_verify_proc_android.h 27 CRLSet* crl_set,
cert_verify_proc_mac.h 27 CRLSet* crl_set,
cert_verify_proc_nss.h 27 CRLSet* crl_set,
cert_verify_proc_openssl.h 26 CRLSet* crl_set,
cert_verify_proc_win.h 27 CRLSet* crl_set,
single_request_cert_verifier.h 30 CRLSet* crl_set,
crl_set.cc 47 CRLSet::CRLSet()
52 CRLSet::~CRLSet() {
55 // CRLSet format:
69 // ContentType (string): "CRLSet" or "CRLSetDelta" (magic value)
71 // contains the sequence number of the base CRLSet.
74 // A delta CRLSet is similar to a CRLSet:
112 // A delta CRLSet applies to a specific CRL set as given in th
    [all...]
mock_cert_verifier.h 31 CRLSet* crl_set,
crl_set_unittest.cc 188 scoped_refptr<net::CRLSet> set;
189 EXPECT_TRUE(net::CRLSet::Parse(s, &set));
192 const net::CRLSet::CRLList& crls = set->crls();
205 EXPECT_EQ(net::CRLSet::REVOKED, set->CheckSerial(
208 EXPECT_EQ(net::CRLSet::GOOD, set->CheckSerial(
218 scoped_refptr<net::CRLSet> set;
219 EXPECT_TRUE(net::CRLSet::Parse(s, &set));
222 scoped_refptr<net::CRLSet> delta_set;
235 scoped_refptr<net::CRLSet> set;
236 EXPECT_TRUE(net::CRLSet::Parse(s, &set))
    [all...]
mock_cert_verifier.cc 42 CRLSet* crl_set,
single_request_cert_verifier.cc 31 CRLSet* crl_set,
cert_verify_proc_android.cc 91 CRLSet* crl_set,
cert_verify_proc_mac.cc 266 bool CheckRevocationWithCRLSet(CFArrayRef chain, CRLSet* crl_set) {
308 CRLSet::Result result = crl_set->CheckSPKI(spki_hash);
310 if (result != CRLSet::REVOKED && !issuer_spki_hash.empty())
316 case CRLSet::REVOKED:
318 case CRLSet::UNKNOWN:
319 case CRLSet::GOOD:
531 CRLSet* crl_set,
cert_verify_proc_win.cc 390 // kCRLSetOk: if every element in the chain is covered by a fresh CRLSet and
393 CRLSet* crl_set) {
433 CRLSet::Result result = crl_set->CheckSPKI(spki_hash);
435 if (result != CRLSet::REVOKED && !issuer_spki_hash.empty())
441 case CRLSet::REVOKED:
443 case CRLSet::UNKNOWN:
446 case CRLSet::GOOD:
547 CRLSet* crl_set,
644 // We don't have fresh information about this chain from the CRLSet and
multi_threaded_cert_verifier.h 60 CRLSet* crl_set,
  /external/chromium_org/chrome/browser/net/
crl_set_fetcher.h 20 class CRLSet;
56 scoped_refptr<net::CRLSet>* out_crl_set);
60 void SetCRLSetIfNewer(scoped_refptr<net::CRLSet> crl_set);
67 // We keep a pointer to the current CRLSet for use on the FILE thread when
69 scoped_refptr<net::CRLSet> crl_set_;
crl_set_fetcher.cc 74 scoped_refptr<net::CRLSet>* out_crl_set) {
81 if (!net::CRLSet::Parse(crl_set_bytes, out_crl_set)) {
97 scoped_refptr<net::CRLSet> crl_set) {
100 scoped_refptr<net::CRLSet> old_crl_set(net::SSLConfigService::GetCRLSet());
128 component.name = "CRLSet";
162 if (!net::CRLSet::GetIsDeltaUpdate(crl_set_bytes, &is_delta)) {
168 if (!net::CRLSet::Parse(crl_set_bytes, &crl_set_)) {
180 scoped_refptr<net::CRLSet> new_crl_set;
  /external/chromium_org/net/tools/crl_set_dump/
crl_set_dump.cc 48 scoped_refptr<net::CRLSet> crl_set, final_crl_set;
49 if (!net::CRLSet::Parse(crl_set_bytes, &crl_set)) {
50 fprintf(stderr, "Failed to parse CRLSet\n");
56 fprintf(stderr, "Failed to apply delta to CRLSet\n");
72 const net::CRLSet::CRLList& crls = final_crl_set->crls();
73 for (net::CRLSet::CRLList::const_iterator i = crls.begin(); i != crls.end();
  /external/chromium_org/net/ssl/
ssl_config_service.h 55 // Regardless of this flag, CRLSet checking is always enabled and locally
194 static void SetCRLSet(scoped_refptr<CRLSet> crl_set);
195 static scoped_refptr<CRLSet> GetCRLSet();
ssl_config_service.cc 84 // GlobalCRLSet holds a reference to the global CRLSet. It simply wraps a lock
86 // updating the CRLSet.
89 void Set(const scoped_refptr<CRLSet>& new_crl_set) {
94 scoped_refptr<CRLSet> Get() const {
100 scoped_refptr<CRLSet> crl_set_;
107 void SSLConfigService::SetCRLSet(scoped_refptr<CRLSet> crl_set) {
113 scoped_refptr<CRLSet> SSLConfigService::GetCRLSet() {
  /external/chromium_org/chrome/browser/chromeos/policy/
policy_cert_verifier.h 51 net::CRLSet* crl_set,
policy_cert_verifier.cc 76 net::CRLSet* crl_set,

Completed in 568 milliseconds

1 2