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

Side by Side Diff: net/cert/ct_signed_certificate_timestamp_log_param.h

Issue 86503002: Certificate Transparency: Logging SCTs to the NetLog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Preparing for review 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_BASE_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
6 #define NET_BASE_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
7
8 #include "net/base/net_log.h"
9 namespace net {
10
11 namespace ct {
12 struct CTVerifyResult;
13 }
14
15 base::Value* NetLogSignedCertificateTimestampCallback(
16 const ct::CTVerifyResult* ct_result, NetLog::LogLevel log_level);
17
18 base::Value* NetLogRawSignedCertificateTimestampCallback(
19 const std::string* embedded_scts,
20 const std::string* sct_list_from_ocsp,
21 const std::string* sct_list_from_tls_extension,
22 NetLog::LogLevel log_level);
23 } // namespace net
24
25 #endif // NET_BASE_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698