blob: ae443c47fdbc190afe817cd73fa156cc5e76e758 [file] [log] [blame]
[email protected]e4c18472012-01-25 00:56:431// 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.
4
[email protected]6b2e61f2012-02-28 08:06:545#include "crypto/ec_signature_creator_impl.h"
[email protected]e4c18472012-01-25 00:56:436
7#include "base/logging.h"
8
9namespace crypto {
10
[email protected]6b2e61f2012-02-28 08:06:5411ECSignatureCreatorImpl::ECSignatureCreatorImpl(ECPrivateKey* key)
[email protected]da3a48b2012-01-25 12:22:5712 : key_(key) {
[email protected]e4c18472012-01-25 00:56:4313 NOTIMPLEMENTED();
14}
15
[email protected]6b2e61f2012-02-28 08:06:5416ECSignatureCreatorImpl::~ECSignatureCreatorImpl() {}
[email protected]e4c18472012-01-25 00:56:4317
[email protected]6b2e61f2012-02-28 08:06:5418bool ECSignatureCreatorImpl::Sign(const uint8* data,
19 int data_len,
20 std::vector<uint8>* signature) {
[email protected]e4c18472012-01-25 00:56:4321 NOTIMPLEMENTED();
22 return false;
23}
24
25} // namespace crypto