| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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/ct_objects_extractor.h" | 5 #include "net/cert/ct_objects_extractor.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace net { | 9 namespace net { |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 LogEntry* result) { | 21 LogEntry* result) { |
| 22 NOTIMPLEMENTED(); | 22 NOTIMPLEMENTED(); |
| 23 return false; | 23 return false; |
| 24 } | 24 } |
| 25 | 25 |
| 26 bool GetX509LogEntry(X509Certificate::OSCertHandle leaf, LogEntry* result) { | 26 bool GetX509LogEntry(X509Certificate::OSCertHandle leaf, LogEntry* result) { |
| 27 NOTIMPLEMENTED(); | 27 NOTIMPLEMENTED(); |
| 28 return false; | 28 return false; |
| 29 } | 29 } |
| 30 | 30 |
| 31 bool ExtractSCTListFromOCSPResponse(X509Certificate::OSCertHandle issuer, |
| 32 const std::string& cert_serial_number, |
| 33 const std::string& ocsp_response, |
| 34 std::string* sct_list) { |
| 35 NOTIMPLEMENTED(); |
| 36 return false; |
| 37 } |
| 38 |
| 31 } // namespace ct | 39 } // namespace ct |
| 32 | 40 |
| 33 } // namespace net | 41 } // namespace net |
| OLD | NEW |