Remove implicit conversions from scoped_refptr to T* in chrome/browser/extensions...
[chromium-blink-merge.git] / net / cert / ct_objects_extractor_openssl.cc
blobf6bd8b0e867dfd519043ec7c6f9250f719e3695c
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.
5 #include "net/cert/ct_objects_extractor.h"
7 #include "base/logging.h"
9 namespace net {
11 namespace ct {
13 bool ExtractEmbeddedSCTList(X509Certificate::OSCertHandle cert,
14 std::string* sct_list) {
15 NOTIMPLEMENTED();
16 return false;
19 bool GetPrecertLogEntry(X509Certificate::OSCertHandle leaf,
20 X509Certificate::OSCertHandle issuer,
21 LogEntry* result) {
22 NOTIMPLEMENTED();
23 return false;
26 bool GetX509LogEntry(X509Certificate::OSCertHandle leaf, LogEntry* result) {
27 NOTIMPLEMENTED();
28 return false;
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;
39 } // namespace ct
41 } // namespace net