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

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: Review comments & linting 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..495de7466bc734ff9a7b6dab547279be10c3607f
--- /dev/null
+++ b/net/cert/ct_ev_whitelist.h
@@ -0,0 +1,86 @@
+// 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"
+
+namespace net {
+
+namespace ct {
+
+namespace internal {
+
+/**
+ * Abstraction over a stream of bits, to be read independently
+ * of the bytes they're packed into. It is limited to 64-bit reads
+ * and is inefficient as a design choice - Since it is used infrequently
+ * to unpack the Golomb-coded EV certificate hashes whitelist in a
+ * blocking thread.
+ *
+ * This class is declared here so it can be tested.
+ */
+class NET_EXPORT_PRIVATE BitStreamReader {
+ 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);
wtc 2014/08/20 02:52:07 Please documents in which direction you are fillin
Eran Messeri 2014/09/02 12:20:23 Good points, done. Also added a class-level commen
+ // Returns the number of bits left in the stream.
+ uint64 BitsLeft() const;
+
+ private:
+ // Returns true if there are more bits to read in the stream.
+ bool HasMoreBits() const;
+ // Reads a single bit.
wtc 2014/08/20 02:52:07 Please document that within a byte, the bits are r
Eran Messeri 2014/09/02 12:20:23 Done.
+ uint8 ReadBit();
+
+ const char* const source_;
+ const size_t length_;
+
+ uint64 curr_byte_;
+ int8 curr_bit_;
wtc 2014/08/20 02:52:07 Nit: it would be nice to document these two member
Eran Messeri 2014/09/02 12:20:23 Very valid point, code reviews should not be puzzl
+};
+
+// Given a Golomb-coded list of hashes in |compressed_whitelist|, unpack into
+// |uncompressed_list|. Returns true if the format of the compressed whitelist
+// is valid,
+// false otherwise.
wtc 2014/08/20 02:52:07 Nit: please reformat this comment block.
Eran Messeri 2014/09/02 12:20:22 Done, I blame git-cl format for that :)
+NET_EXPORT_PRIVATE bool UncompressEVWhitelist(
+ const std::string& compressed_whitelist,
+ std::set<std::string>* uncompressed_list);
+
+// Sets the given |ev_whitelist| into the global context.
+// Note that |ev_whitelist| will be empty after this call as the implementation
+// is using set::swap() to efficiently switch the sets.
wtc 2014/08/20 02:52:07 IMPORTANT: are you sure this is true? The |ev_whit
Eran Messeri 2014/09/02 12:20:23 My bad, it was supposed to be passed by (non-const
+NET_EXPORT_PRIVATE void SetEVWhitelistData(std::set<std::string> ev_whitelist);
wtc 2014/08/20 02:52:07 This function is only used by SetEVWhitelistFromFi
Eran Messeri 2014/09/02 12:20:23 It's meant to be used from a test I did not write.
+
+} // namespace internal
+
+// Sets the global EV certificate hashes whitelist from
+// |compressed_whitelist_file| in the global context, after uncompressing it.
+// If the data in |compressed_whitelist_file| is not a valid compressed
+// whitelist, does nothing.
+NET_EXPORT void SetEVWhitelistFromFile(
+ const base::FilePath& compressed_whitelist_file);
+
+// Returns true if the |certificate_hash| appears in the EV certificate hashes
+// whitelist.
+NET_EXPORT bool IsCertificateHashInWhitelist(
+ const std::string& certificate_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