Searched refs:CRLSet (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/net/cert/
H A Dcrl_set.h24 // A CRLSet is a structure that lists the serial numbers of revoked
27 class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> { class in namespace:net
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
[all...]
H A Dcert_verify_proc.h19 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,
H A Dcert_verifier.h18 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,
H A Dcert_verify_proc_android.h27 CRLSet* crl_set,
H A Dcert_verify_proc_mac.h27 CRLSet* crl_set,
H A Dcert_verify_proc_openssl.h26 CRLSet* crl_set,
H A Dcert_verify_proc_win.h27 CRLSet* crl_set,
H A Dcert_verify_proc_nss.h27 CRLSet* crl_set,
H A Dsingle_request_cert_verifier.h30 CRLSet* crl_set,
H A Dcrl_set.cc47 CRLSet::CRLSet() function in class:net::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 applie
[all...]
H A Dmock_cert_verifier.h31 CRLSet* crl_set,
H A Dcrl_set_unittest.cc188 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
[all...]
H A Dmock_cert_verifier.cc42 CRLSet* crl_set,
H A Dsingle_request_cert_verifier.cc31 CRLSet* crl_set,
H A Dcert_verify_proc_android.cc91 CRLSet* crl_set,
H A Dcert_verify_proc_mac.cc266 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,
H A Dcert_verify_proc_win.cc390 // 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
H A Dmulti_threaded_cert_verifier.h60 CRLSet* crl_set,
/external/chromium_org/chrome/browser/net/
H A Dcrl_set_fetcher.h20 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_;
H A Dcrl_set_fetcher.cc73 scoped_refptr<net::CRLSet>* out_crl_set) {
80 if (!net::CRLSet::Parse(crl_set_bytes, out_crl_set)) {
96 scoped_refptr<net::CRLSet> crl_set) {
99 scoped_refptr<net::CRLSet> old_crl_set(net::SSLConfigService::GetCRLSet());
127 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/
H A Dcrl_set_dump.cc48 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/chrome/browser/chromeos/policy/
H A Dpolicy_cert_verifier.h35 net::CRLSet* crl_set,
H A Dpolicy_cert_verifier.cc77 net::CRLSet* crl_set,
/external/chromium_org/net/ssl/
H A Dssl_config_service.cc82 // GlobalCRLSet holds a reference to the global CRLSet. It simply wraps a lock
84 // updating the CRLSet.
87 void Set(const scoped_refptr<CRLSet>& new_crl_set) {
92 scoped_refptr<CRLSet> Get() const {
98 scoped_refptr<CRLSet> crl_set_;
105 void SSLConfigService::SetCRLSet(scoped_refptr<CRLSet> crl_set) {
111 scoped_refptr<CRLSet> SSLConfigService::GetCRLSet() {
H A Dssl_config_service.h55 // Regardless of this flag, CRLSet checking is always enabled and locally
185 static void SetCRLSet(scoped_refptr<CRLSet> crl_set);
186 static scoped_refptr<CRLSet> GetCRLSet();

Completed in 240 milliseconds

12