summaryrefslogtreecommitdiffstats
path: root/crypto/ec_signature_creator_openssl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ec_signature_creator_openssl.cc')
-rw-r--r--crypto/ec_signature_creator_openssl.cc18
1 files changed, 6 insertions, 12 deletions
diff --git a/crypto/ec_signature_creator_openssl.cc b/crypto/ec_signature_creator_openssl.cc
index 9fa8ddc..ae443c4 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;
}