OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 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 #include "net/cert/ct_objects_extractor.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 namespace net { |
| 10 |
| 11 namespace ct { |
| 12 |
| 13 bool ExtractEmbeddedSCTs(X509Certificate::OSCertHandle cert, |
| 14 std::string* sct_list) { |
| 15 NOTIMPLEMENTED(); |
| 16 return false; |
| 17 } |
| 18 |
| 19 bool GetPrecertLogEntry(X509Certificate::OSCertHandle leaf, |
| 20 X509Certificate::OSCertHandle issuer, |
| 21 LogEntry* result) { |
| 22 NOTIMPLEMENTED(); |
| 23 return false; |
| 24 } |
| 25 |
| 26 bool GetAsn1CertLogEntry(X509Certificate::OSCertHandle leaf_cert, |
| 27 LogEntry* result) { |
| 28 NOTIMPLEMENTED(); |
| 29 return false; |
| 30 } |
| 31 |
| 32 } // namespace ct |
| 33 |
| 34 } // namespace net |
OLD | NEW |