Don't consider a Bluetooth adapter present until it has an address.
[chromium-blink-merge.git] / crypto / ec_signature_creator_openssl.cc
blobae443c47fdbc190afe817cd73fa156cc5e76e758
1 // Copyright (c) 2012 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 "crypto/ec_signature_creator_impl.h"
7 #include "base/logging.h"
9 namespace crypto {
11 ECSignatureCreatorImpl::ECSignatureCreatorImpl(ECPrivateKey* key)
12 : key_(key) {
13 NOTIMPLEMENTED();
16 ECSignatureCreatorImpl::~ECSignatureCreatorImpl() {}
18 bool ECSignatureCreatorImpl::Sign(const uint8* data,
19 int data_len,
20 std::vector<uint8>* signature) {
21 NOTIMPLEMENTED();
22 return false;
25 } // namespace crypto