• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
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 
ExtractEmbeddedSCTList(X509Certificate::OSCertHandle cert,std::string * sct_list)13 bool ExtractEmbeddedSCTList(X509Certificate::OSCertHandle cert,
14                             std::string* sct_list) {
15   NOTIMPLEMENTED();
16   return false;
17 }
18 
GetPrecertLogEntry(X509Certificate::OSCertHandle leaf,X509Certificate::OSCertHandle issuer,LogEntry * result)19 bool GetPrecertLogEntry(X509Certificate::OSCertHandle leaf,
20                         X509Certificate::OSCertHandle issuer,
21                         LogEntry* result) {
22   NOTIMPLEMENTED();
23   return false;
24 }
25 
GetX509LogEntry(X509Certificate::OSCertHandle leaf,LogEntry * result)26 bool GetX509LogEntry(X509Certificate::OSCertHandle leaf, LogEntry* result) {
27   NOTIMPLEMENTED();
28   return false;
29 }
30 
ExtractSCTListFromOCSPResponse(X509Certificate::OSCertHandle issuer,const std::string & cert_serial_number,const std::string & ocsp_response,std::string * sct_list)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 
39 }  // namespace ct
40 
41 }  // namespace net
42