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

Unified Diff: net/cert/ct_known_logs.h

Issue 76443006: Certificate Transparency: Threading the CT verifier into the SSL client socket. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reverted changes to cert_status_flags, added error code Created 7 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 side-by-side diff with in-line comments
Download patch
Index: net/cert/ct_known_logs.h
diff --git a/net/cert/ct_known_logs.h b/net/cert/ct_known_logs.h
new file mode 100644
index 0000000000000000000000000000000000000000..d616e9b358c0f843a092739e87df3f5df178fe3b
--- /dev/null
+++ b/net/cert/ct_known_logs.h
@@ -0,0 +1,30 @@
+// Copyright 2013 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_KNOWN_LOGS_H_
+#define NET_CERT_CT_KNOWN_LOGS_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "net/base/net_export.h"
+
+namespace net {
+
+class CTLogVerifier;
+
+namespace ct {
+
+// Creates a CTLogVerifier instance for the Google Pilot CT Log
+NET_EXPORT scoped_ptr<CTLogVerifier> CreateGooglePilotLogVerifier();
+
+// Creates a CTLogVerifier instance for the Google "Aviator" Log
+NET_EXPORT scoped_ptr<CTLogVerifier> CreateGoogleAviatorLogVerifier();
+
+// Creates a CTLogVerifier instance for the Google "Rocketeer" Log
+NET_EXPORT scoped_ptr<CTLogVerifier> CreateGoogleRocketeerLogVerifier();
+
+} // namespace ct
+
+} // namespace net
+
+#endif // NET_CERT_CT_KNOWN_LOGS_H_

Powered by Google App Engine
This is Rietveld 408576698