| Index: crypto/ec_private_key_unittest.cc
|
| diff --git a/crypto/ec_private_key_unittest.cc b/crypto/ec_private_key_unittest.cc
|
| index d2ec256deda7461cd6ef8626437c66a3fae8d196..d1a4c862fcbe1cc78c564293772fc2b431c5c2bb 100644
|
| --- a/crypto/ec_private_key_unittest.cc
|
| +++ b/crypto/ec_private_key_unittest.cc
|
| @@ -9,16 +9,9 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| -#if defined(USE_OPENSSL)
|
| -// Once ECPrivateKey is implemented for OpenSSL, remove this #if block.
|
| -// TODO(mattm): When that happens, also add some exported keys from each to test
|
| +// TODO(mattm): Add some exported keys from each to test
|
| // interop between NSS and OpenSSL.
|
| -TEST(ECPrivateKeyUnitTest, OpenSSLStub) {
|
| - scoped_ptr<crypto::ECPrivateKey> keypair1(
|
| - crypto::ECPrivateKey::Create());
|
| - ASSERT_FALSE(keypair1.get());
|
| -}
|
| -#else
|
| +
|
| // Generate random private keys. Export, then re-import. We should get
|
| // back the same exact public key, and the private key should have the same
|
| // value and elliptic curve params.
|
| @@ -104,4 +97,3 @@ TEST(ECPrivateKeyUnitTest, BadPasswordTest) {
|
| password2, privkey1, pubkey1));
|
| ASSERT_FALSE(keypair2.get());
|
| }
|
| -#endif // !defined(USE_OPENSSL)
|
|
|