Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: net/base/crl_set.h

Issue 9149010: net: allow CRLSets to block specific SPKIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « crypto/sha2.cc ('k') | net/base/crl_set.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_BASE_CRL_SET_H_ 5 #ifndef NET_BASE_CRL_SET_H_
6 #define NET_BASE_CRL_SET_H_ 6 #define NET_BASE_CRL_SET_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 #include <utility> 11 #include <utility>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
16 #include "base/string_piece.h" 16 #include "base/string_piece.h"
17 #include "base/time.h" 17 #include "base/time.h"
18 #include "net/base/net_export.h" 18 #include "net/base/net_export.h"
19 19
20 namespace base {
21 class DictionaryValue;
22 }
23
20 namespace net { 24 namespace net {
21 25
22 // A CRLSet is a structure that lists the serial numbers of revoked 26 // A CRLSet is a structure that lists the serial numbers of revoked
23 // certificates from a number of issuers where issuers are identified by the 27 // certificates from a number of issuers where issuers are identified by the
24 // SHA256 of their SubjectPublicKeyInfo. 28 // SHA256 of their SubjectPublicKeyInfo.
25 class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> { 29 class NET_EXPORT CRLSet : public base::RefCountedThreadSafe<CRLSet> {
26 public: 30 public:
27 enum Result { 31 enum Result {
28 REVOKED, // the certificate should be rejected. 32 REVOKED, // the certificate should be rejected.
29 UNKNOWN, // the CRL for the certificate is not included in the set. 33 UNKNOWN, // the CRL for the certificate is not included in the set.
30 GOOD, // the certificate is not listed. 34 GOOD, // the certificate is not listed.
31 }; 35 };
32 36
33 ~CRLSet(); 37 ~CRLSet();
34 38
35 // Parse parses the bytes in |data| and, on success, puts a new CRLSet in 39 // Parse parses the bytes in |data| and, on success, puts a new CRLSet in
36 // |out_crl_set| and returns true. 40 // |out_crl_set| and returns true.
37 static bool Parse(base::StringPiece data, 41 static bool Parse(base::StringPiece data,
38 scoped_refptr<CRLSet>* out_crl_set); 42 scoped_refptr<CRLSet>* out_crl_set);
39 43
40 // CheckCertificate returns the information contained in the set for a given 44 // CheckSPKI checks whether the given SPKI has been listed as blocked.
45 // spki_hash: the SHA256 of the SubjectPublicKeyInfo of the certificate.
46 Result CheckSPKI(const base::StringPiece& spki_hash) const;
47
48 // CheckSerial returns the information contained in the set for a given
41 // certificate: 49 // certificate:
42 // serial_number: the serial number of the certificate 50 // serial_number: the serial number of the certificate
43 // issuer_spki_hash: the SHA256 of the SubjectPublicKeyInfo of the CRL 51 // issuer_spki_hash: the SHA256 of the SubjectPublicKeyInfo of the CRL
44 // signer 52 // signer
45 Result CheckCertificate( 53 Result CheckSerial(
46 const base::StringPiece& serial_number, 54 const base::StringPiece& serial_number,
47 const base::StringPiece& issuer_spki_hash) const; 55 const base::StringPiece& issuer_spki_hash) const;
48 56
49 // ApplyDelta returns a new CRLSet in |out_crl_set| that is the result of 57 // ApplyDelta returns a new CRLSet in |out_crl_set| that is the result of
50 // updating the current CRL set with the delta information in |delta_bytes|. 58 // updating the current CRL set with the delta information in |delta_bytes|.
51 bool ApplyDelta(const base::StringPiece& delta_bytes, 59 bool ApplyDelta(const base::StringPiece& delta_bytes,
52 scoped_refptr<CRLSet>* out_crl_set); 60 scoped_refptr<CRLSet>* out_crl_set);
53 61
54 // GetIsDeltaUpdate extracts the header from |bytes|, sets *is_delta to 62 // GetIsDeltaUpdate extracts the header from |bytes|, sets *is_delta to
55 // whether |bytes| is a delta CRL set or not and returns true. In the event 63 // whether |bytes| is a delta CRL set or not and returns true. In the event
(...skipping 15 matching lines...) Expand all
71 typedef std::vector< std::pair<std::string, std::vector<std::string> > > 79 typedef std::vector< std::pair<std::string, std::vector<std::string> > >
72 CRLList; 80 CRLList;
73 81
74 // crls returns the internal state of this CRLSet. It should only be used in 82 // crls returns the internal state of this CRLSet. It should only be used in
75 // testing. 83 // testing.
76 const CRLList& crls() const; 84 const CRLList& crls() const;
77 85
78 private: 86 private:
79 CRLSet(); 87 CRLSet();
80 88
81 static CRLSet* CRLSetFromHeader(base::StringPiece header); 89 // CopyBlockedSPKIsFromHeader sets |blocked_spkis_| to the list of values
90 // from "BlockedSPKIs" in |header_dict|.
91 bool CopyBlockedSPKIsFromHeader(base::DictionaryValue* header_dict);
82 92
83 uint32 sequence_; 93 uint32 sequence_;
84 CRLList crls_; 94 CRLList crls_;
85 // crls_index_by_issuer_ maps from issuer SPKI hashes to the index in |crls_| 95 // crls_index_by_issuer_ maps from issuer SPKI hashes to the index in |crls_|
86 // where the information for that issuer can be found. We have both |crls_| 96 // where the information for that issuer can be found. We have both |crls_|
87 // and |crls_index_by_issuer_| because, when applying a delta update, we need 97 // and |crls_index_by_issuer_| because, when applying a delta update, we need
88 // to identify a CRL by index. 98 // to identify a CRL by index.
89 std::map<std::string, size_t> crls_index_by_issuer_; 99 std::map<std::string, size_t> crls_index_by_issuer_;
100 // blocked_spkis_ contains the SHA256 hashes of SPKIs which are to be blocked
101 // no matter where in a certificate chain they might appear.
102 std::vector<std::string> blocked_spkis_;
90 }; 103 };
91 104
92 } // namespace net 105 } // namespace net
93 106
94 #endif // NET_BASE_CRL_SET_H_ 107 #endif // NET_BASE_CRL_SET_H_
OLDNEW
« no previous file with comments | « crypto/sha2.cc ('k') | net/base/crl_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698