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.
5 #ifndef NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
6 #define NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
8 #include "net/base/net_log.h"
13 struct CTVerifyResult
;
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
);
23 // Creates a dictionary of raw Signed Certificate Timestamps to be logged
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
);
35 #endif // NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_