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

Side by Side Diff: net/cert/ct_objects_extractor_openssl.cc

Issue 92443002: Extract Certificate Transparency SCTs from stapled OCSP responses (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extract_scts
Patch Set: Fix C++11 compile error Created 7 years 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
« 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
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
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
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