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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« 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