OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "net/cert/x509_certificate_net_log_param.h" | 5 #include "net/cert/x509_certificate_net_log_param.h" |
6 | 6 |
7 #include <memory> | 7 #include <memory> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/values.h" | 12 #include "base/values.h" |
13 #include "net/cert/x509_certificate.h" | 13 #include "net/cert/x509_certificate.h" |
| 14 #include "net/log/net_log_capture_mode.h" |
14 | 15 |
15 namespace net { | 16 namespace net { |
16 | 17 |
17 std::unique_ptr<base::Value> NetLogX509CertificateCallback( | 18 std::unique_ptr<base::Value> NetLogX509CertificateCallback( |
18 const X509Certificate* certificate, | 19 const X509Certificate* certificate, |
19 NetLogCaptureMode capture_mode) { | 20 NetLogCaptureMode capture_mode) { |
20 std::unique_ptr<base::DictionaryValue> dict(new base::DictionaryValue()); | 21 std::unique_ptr<base::DictionaryValue> dict(new base::DictionaryValue()); |
21 std::unique_ptr<base::ListValue> certs(new base::ListValue()); | 22 std::unique_ptr<base::ListValue> certs(new base::ListValue()); |
22 std::vector<std::string> encoded_chain; | 23 std::vector<std::string> encoded_chain; |
23 certificate->GetPEMEncodedChain(&encoded_chain); | 24 certificate->GetPEMEncodedChain(&encoded_chain); |
24 for (size_t i = 0; i < encoded_chain.size(); ++i) | 25 for (size_t i = 0; i < encoded_chain.size(); ++i) |
25 certs->AppendString(encoded_chain[i]); | 26 certs->AppendString(encoded_chain[i]); |
26 dict->Set("certificates", std::move(certs)); | 27 dict->Set("certificates", std::move(certs)); |
27 return std::move(dict); | 28 return std::move(dict); |
28 } | 29 } |
29 | 30 |
30 } // namespace net | 31 } // namespace net |
OLD | NEW |