Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(566)

Unified Diff: crypto/ec_signature_creator_openssl.cc

Issue 9455006: Fix SpdySession::WriteCredentialFrame ECPrivateKey creation args. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: forgot add Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698