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

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: Forgot one file. 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_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
6 #define NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
7
8 #include "net/base/net_log.h"
9
10 namespace net {
11
12 namespace ct {
13 struct CTVerifyResult;
14 }
15
16 // Creates a dictionary of processed Signed Certificate Timestamps to be
17 // logged in the NetLog.
18 // See the documentation for SIGNED_CERTIFICATE_TIMESTAMPS_CHECKED
19 // in net/base/net_log_event_type_list.h
20 base::Value* NetLogSignedCertificateTimestampCallback(
21 const ct::CTVerifyResult* ct_result, NetLog::LogLevel log_level);
22
23 // Creates a dictionary of raw Signed Certificate Timestamps to be logged
24 // in the NetLog.
25 // See the documentation for SIGNED_CERTIFICATE_TIMESTAMPS_RECEIVED
26 // in net/base/net_log_event_type_list.h
27 base::Value* NetLogRawSignedCertificateTimestampCallback(
28 const std::string* embedded_scts,
29 const std::string* sct_list_from_ocsp,
30 const std::string* sct_list_from_tls_extension,
31 NetLog::LogLevel log_level);
32
33 } // namespace net
34
35 #endif // NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
OLDNEW
« no previous file with comments | « net/base/net_log_event_type_list.h ('k') | net/cert/ct_signed_certificate_timestamp_log_param.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698