Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Unified Diff: net/cert/ct_objects_extractor_openssl.cc

Issue 27026002: CT: Adding preliminary Certificate Transparency support to Chromium. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Distinguish between SCTs from unknown logs and unverified ones Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/cert/ct_objects_extractor_nss.cc ('k') | net/cert/ct_objects_extractor_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « net/cert/ct_objects_extractor_nss.cc ('k') | net/cert/ct_objects_extractor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698