| Index: crypto/ec_signature_creator_openssl.cc
|
| diff --git a/crypto/ec_signature_creator_openssl.cc b/crypto/ec_signature_creator_openssl.cc
|
| index 9fa8ddcfd2dc496ad012f7c9a2ae3fcb3dc283e2..ae443c47fdbc190afe817cd73fa156cc5e76e758 100644
|
| --- a/crypto/ec_signature_creator_openssl.cc
|
| +++ b/crypto/ec_signature_creator_openssl.cc
|
| @@ -2,28 +2,22 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "crypto/ec_signature_creator.h"
|
| +#include "crypto/ec_signature_creator_impl.h"
|
|
|
| #include "base/logging.h"
|
|
|
| namespace crypto {
|
|
|
| -// static
|
| -ECSignatureCreator* ECSignatureCreator::Create(ECPrivateKey* key) {
|
| - NOTIMPLEMENTED();
|
| - return NULL;
|
| -}
|
| -
|
| -ECSignatureCreator::ECSignatureCreator(ECPrivateKey* key)
|
| +ECSignatureCreatorImpl::ECSignatureCreatorImpl(ECPrivateKey* key)
|
| : key_(key) {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| -ECSignatureCreator::~ECSignatureCreator() { }
|
| +ECSignatureCreatorImpl::~ECSignatureCreatorImpl() {}
|
|
|
| -bool ECSignatureCreator::Sign(const uint8* data,
|
| - int data_len,
|
| - std::vector<uint8>* signature) {
|
| +bool ECSignatureCreatorImpl::Sign(const uint8* data,
|
| + int data_len,
|
| + std::vector<uint8>* signature) {
|
| NOTIMPLEMENTED();
|
| return false;
|
| }
|
|
|