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

Unified Diff: blimp/net/ssl_client_transport.h

Issue 2103143003: Add certificate transparency enforcement to SSL client code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | blimp/net/ssl_client_transport.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/ssl_client_transport.h
diff --git a/blimp/net/ssl_client_transport.h b/blimp/net/ssl_client_transport.h
index df91b7d1c98520950bccd6636a7013875b3f0880..46c4a1dfa52b62b4dfe28ea6feccea1031d752e0 100644
--- a/blimp/net/ssl_client_transport.h
+++ b/blimp/net/ssl_client_transport.h
@@ -16,6 +16,8 @@
#include "blimp/net/tcp_client_transport.h"
#include "net/base/address_list.h"
#include "net/base/net_errors.h"
+#include "net/cert/ct_policy_enforcer.h"
+#include "net/cert/multi_log_ct_verifier.h"
#include "net/http/transport_security_state.h"
namespace net {
@@ -58,6 +60,8 @@ class BLIMP_NET_EXPORT SSLClientTransport : public TCPClientTransport {
net::IPEndPoint ip_endpoint_;
std::unique_ptr<ExactMatchCertVerifier> cert_verifier_;
net::TransportSecurityState transport_security_state_;
+ net::MultiLogCTVerifier cert_transparency_verifier_;
+ net::CTPolicyEnforcer ct_policy_enforcer_;
DISALLOW_COPY_AND_ASSIGN(SSLClientTransport);
};
« no previous file with comments | « no previous file | blimp/net/ssl_client_transport.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698