Home | History | Annotate | Download | only in base
      1 // Copyright (c) 2011 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 "base/logging.h"
      6 #include "net/base/crypto_module.h"
      7 
      8 namespace net {
      9 
     10 std::string CryptoModule::GetTokenName() const {
     11   NOTIMPLEMENTED();
     12   return "";
     13 }
     14 
     15 // static
     16 CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) {
     17   NOTIMPLEMENTED();
     18   return NULL;
     19 }
     20 
     21 CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
     22 }
     23 
     24 CryptoModule::~CryptoModule() {
     25 }
     26 
     27 }  // namespace net
     28