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

Side by Side 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 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2013 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_KNOWN_LOGS_H_
6 #define NET_CERT_CT_KNOWN_LOGS_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "net/base/net_export.h"
10
11 namespace net {
12
13 class CTLogVerifier;
14
15 namespace ct {
16
17 // Creates a CTLogVerifier instance for the Google Pilot CT Log
18 NET_EXPORT scoped_ptr<CTLogVerifier> CreateGooglePilotLogVerifier();
19
20 // Creates a CTLogVerifier instance for the Google "Aviator" Log
21 NET_EXPORT scoped_ptr<CTLogVerifier> CreateGoogleAviatorLogVerifier();
22
23 // Creates a CTLogVerifier instance for the Google "Rocketeer" Log
24 NET_EXPORT scoped_ptr<CTLogVerifier> CreateGoogleRocketeerLogVerifier();
25
26 } // namespace ct
27
28 } // namespace net
29
30 #endif // NET_CERT_CT_KNOWN_LOGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698