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

Side by Side Diff: net/cert/ct_ev_whitelist.h

Issue 547603002: Certificate Transparency: Code for unpacking EV cert hashes whitelist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing unnecessary const Created 6 years, 1 month 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | net/net.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_CERT_CT_EV_WHITELIST_H_
6 #define NET_CERT_CT_EV_WHITELIST_H_
7
8 #include <string>
9
10 #include "base/memory/ref_counted.h"
11 #include "net/base/net_export.h"
12
13 namespace net {
14
15 namespace ct {
16
17 class NET_EXPORT EVCertsWhitelist
18 : public base::RefCountedThreadSafe<EVCertsWhitelist> {
19 public:
20 // Returns true if the |certificate_hash| appears in the EV certificate hashes
21 // whitelist.
22 virtual bool ContainsCertificateHash(
23 const std::string& certificate_hash) const = 0;
24
25 // Returns true if the global EV certificate hashes whitelist is non-empty,
26 // false otherwise.
27 virtual bool IsValid() const = 0;
28
29 protected:
30 virtual ~EVCertsWhitelist() {}
31
32 private:
33 friend class base::RefCountedThreadSafe<EVCertsWhitelist>;
34 };
35
36 } // namespace ct
37
38 } // namespace net
39
40 #endif // NET_CERT_CT_EV_WHITELIST_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698