Chromium Code Reviews| 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..e2ba4c1378ccccdb60dcd255cba7ef5b10d634c2 100644 |
| --- a/crypto/ec_signature_creator_openssl.cc |
| +++ b/crypto/ec_signature_creator_openssl.cc |
| @@ -9,23 +9,9 @@ |
| namespace crypto { |
| // static |
| -ECSignatureCreator* ECSignatureCreator::Create(ECPrivateKey* key) { |
| +ECSignatureCreator* ECSignatureCreator::CreatePlatformImpl(ECPrivateKey* key) { |
|
Ryan Hamilton
2012/02/23 04:36:12
Nice... cleaner not-implemented implementation...
|
| NOTIMPLEMENTED(); |
| return NULL; |
| } |
| -ECSignatureCreator::ECSignatureCreator(ECPrivateKey* key) |
| - : key_(key) { |
| - NOTIMPLEMENTED(); |
| -} |
| - |
| -ECSignatureCreator::~ECSignatureCreator() { } |
| - |
| -bool ECSignatureCreator::Sign(const uint8* data, |
| - int data_len, |
| - std::vector<uint8>* signature) { |
| - NOTIMPLEMENTED(); |
| - return false; |
| -} |
| - |
| } // namespace crypto |