| Index: crypto/ec_private_key_openssl.cc
|
| diff --git a/crypto/ec_private_key_openssl.cc b/crypto/ec_private_key_openssl.cc
|
| index c8d9c250aafb823793039205c3acf249a3ab730f..ce921dde15f6d1d96e46e286d2f45eb95440ee16 100644
|
| --- a/crypto/ec_private_key_openssl.cc
|
| +++ b/crypto/ec_private_key_openssl.cc
|
| @@ -101,12 +101,6 @@ ECPrivateKey* ECPrivateKey::Create() {
|
| }
|
|
|
| // static
|
| -ECPrivateKey* ECPrivateKey::CreateSensitive() {
|
| - NOTIMPLEMENTED();
|
| - return NULL;
|
| -}
|
| -
|
| -// static
|
| ECPrivateKey* ECPrivateKey::CreateFromEncryptedPrivateKeyInfo(
|
| const std::string& password,
|
| const std::vector<uint8>& encrypted_private_key_info,
|
| @@ -150,15 +144,6 @@ ECPrivateKey* ECPrivateKey::CreateFromEncryptedPrivateKeyInfo(
|
| return result.release();
|
| }
|
|
|
| -// static
|
| -ECPrivateKey* ECPrivateKey::CreateSensitiveFromEncryptedPrivateKeyInfo(
|
| - const std::string& password,
|
| - const std::vector<uint8>& encrypted_private_key_info,
|
| - const std::vector<uint8>& subject_public_key_info) {
|
| - NOTIMPLEMENTED();
|
| - return NULL;
|
| -}
|
| -
|
| bool ECPrivateKey::ExportEncryptedPrivateKey(
|
| const std::string& password,
|
| int iterations,
|
|
|