Index: net/cert/ct_objects_extractor_openssl.cc |
diff --git a/net/cert/ct_objects_extractor_openssl.cc b/net/cert/ct_objects_extractor_openssl.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bd9c61a4c6927a377356a7bf617b3caa054b76bb |
--- /dev/null |
+++ b/net/cert/ct_objects_extractor_openssl.cc |
@@ -0,0 +1,34 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "net/cert/ct_objects_extractor.h" |
+ |
+#include "base/logging.h" |
+ |
+namespace net { |
+ |
+namespace ct { |
+ |
+bool ExtractEmbeddedSCTs(X509Certificate::OSCertHandle cert, |
+ std::string* sct_list) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
+bool GetPrecertLogEntry(X509Certificate::OSCertHandle leaf, |
+ X509Certificate::OSCertHandle issuer, |
+ LogEntry* result) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
+bool GetAsn1CertLogEntry(X509Certificate::OSCertHandle leaf_cert, |
+ LogEntry* result) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
+} // namespace ct |
+ |
+} // namespace net |