OLD | NEW |
(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_ |
OLD | NEW |