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

Unified Diff: net/cert/ct_ev_whitelist.h

Issue 462543002: Certificate Transparency: Code for unpacking EV cert hashes whitelist (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing on master Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/cert/ct_ev_whitelist.cc » ('j') | net/cert/ct_ev_whitelist.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/ct_ev_whitelist.h
diff --git a/net/cert/ct_ev_whitelist.h b/net/cert/ct_ev_whitelist.h
new file mode 100644
index 0000000000000000000000000000000000000000..cf1c86c78721cc0312909bff4635595c129e11c1
--- /dev/null
+++ b/net/cert/ct_ev_whitelist.h
@@ -0,0 +1,63 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_CERT_CT_EV_WHITELIST_H_
+#define NET_CERT_CT_EV_WHITELIST_H_
+
+#include <set>
+#include <string>
+
+#include "base/files/file_path.h"
+#include "net/base/net_export.h"
wtc 2014/08/14 02:04:43 Nit: Remove this header. Actually, I think we will
Eran Messeri 2014/08/14 11:55:07 Added NET_EXPORT & NET_EXPORT_PRIVATE where (I thi
+
+namespace net {
+
+namespace ct {
+
+namespace internal {
+
+class BitStreamReader {
wtc 2014/08/14 02:04:43 Nit: please add a short comment to summarize this
Eran Messeri 2014/08/14 11:55:07 Done.
Eran Messeri 2014/08/14 11:55:08 Done.
+ public:
+ BitStreamReader(const char* source, size_t length);
+
+ // Reads unary-encoded number into |out|. Returns true if
+ // there was at least one bit to read, false otherwise.
+ bool ReadUnaryEncoding(uint64* out);
+ // Reads |num_bits| (up to 64) into |out|. Returns true if
+ // the stream had the requested |num_bits|, false otherwise.
+ bool ReadBits(uint8 num_bits, uint64* out);
+ // Returns the number of bits left in the stream.
+ uint64 BitsLeft();
wtc 2014/08/14 02:04:43 Nit: Declare this method as const.
Eran Messeri 2014/08/14 11:55:08 Done.
+
+ private:
+ // Returns true if there are more bits to read in the stream.
+ bool HasMoreBits();
+ // Reads a single bit.
+ uint8 ReadBit();
+
+ const char* source_;
+ const size_t length_;
wtc 2014/08/14 02:04:44 Nit: To match this 'const', the |source_| member s
Eran Messeri 2014/08/14 11:55:07 Done.
+
+ uint64 curr_byte_;
+ int8 curr_bit_;
+};
+
+bool UncompressEVWhitelist(
+ const std::string& compressed_whitelist,
+ std::set<std::string>* uncompressed_list);
+
+void SetEVWhitelistData(std::set<std::string> ev_whitelist);
wtc 2014/08/14 02:04:44 Nit: Should the input parameter be a const referen
Eran Messeri 2014/08/14 11:55:07 No, because I'm using set.swap underneath. Will ad
+
+} // namespace internal
+
+
wtc 2014/08/14 02:04:43 Nit: delete a blank line.
Eran Messeri 2014/08/14 11:55:08 Done.
+void SetEVWhitelistFromFile(const base::FilePath& compressed_whitelist_file);
+
+bool IsCertificateHashInWhitelist(const std::string& cert_hash);
+
+} // namespace ct
+
+} // namespace net
+
+#endif // NET_CERT_CT_EV_WHITELIST_H_
« no previous file with comments | « no previous file | net/cert/ct_ev_whitelist.cc » ('j') | net/cert/ct_ev_whitelist.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698