[email protected] | e4c1847 | 2012-01-25 00:56:43 | [diff] [blame] | 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. | ||||
4 | |||||
[email protected] | 6b2e61f | 2012-02-28 08:06:54 | [diff] [blame^] | 5 | #include "crypto/ec_signature_creator_impl.h" |
[email protected] | e4c1847 | 2012-01-25 00:56:43 | [diff] [blame] | 6 | |
7 | #include "base/logging.h" | ||||
8 | |||||
9 | namespace crypto { | ||||
10 | |||||
[email protected] | 6b2e61f | 2012-02-28 08:06:54 | [diff] [blame^] | 11 | ECSignatureCreatorImpl::ECSignatureCreatorImpl(ECPrivateKey* key) |
[email protected] | da3a48b | 2012-01-25 12:22:57 | [diff] [blame] | 12 | : key_(key) { |
[email protected] | e4c1847 | 2012-01-25 00:56:43 | [diff] [blame] | 13 | NOTIMPLEMENTED(); |
14 | } | ||||
15 | |||||
[email protected] | 6b2e61f | 2012-02-28 08:06:54 | [diff] [blame^] | 16 | ECSignatureCreatorImpl::~ECSignatureCreatorImpl() {} |
[email protected] | e4c1847 | 2012-01-25 00:56:43 | [diff] [blame] | 17 | |
[email protected] | 6b2e61f | 2012-02-28 08:06:54 | [diff] [blame^] | 18 | bool ECSignatureCreatorImpl::Sign(const uint8* data, |
19 | int data_len, | ||||
20 | std::vector<uint8>* signature) { | ||||
[email protected] | e4c1847 | 2012-01-25 00:56:43 | [diff] [blame] | 21 | NOTIMPLEMENTED(); |
22 | return false; | ||||
23 | } | ||||
24 | |||||
25 | } // namespace crypto |