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
8namespace net {
9
10std::string CryptoModule::GetTokenName() const {
11  NOTIMPLEMENTED();
12  return "";
13}
14
15// static
16CryptoModule* CryptoModule::CreateFromHandle(OSModuleHandle handle) {
17  NOTIMPLEMENTED();
18  return NULL;
19}
20
21CryptoModule::CryptoModule(OSModuleHandle handle) : module_handle_(handle) {
22}
23
24CryptoModule::~CryptoModule() {
25}
26
27}  // namespace net
28