Index: crypto/rsa_private_key_openssl.cc |
diff --git a/crypto/rsa_private_key_openssl.cc b/crypto/rsa_private_key_openssl.cc |
index 64a627e5fbfa293591952fdd68aa1194df5e7be5..f191e393288372c98e4ec379f3408224d09b7480 100644 |
--- a/crypto/rsa_private_key_openssl.cc |
+++ b/crypto/rsa_private_key_openssl.cc |
@@ -67,12 +67,6 @@ RSAPrivateKey* RSAPrivateKey::Create(uint16 num_bits) { |
} |
// static |
-RSAPrivateKey* RSAPrivateKey::CreateSensitive(uint16 num_bits) { |
- NOTIMPLEMENTED(); |
- return NULL; |
-} |
- |
-// static |
RSAPrivateKey* RSAPrivateKey::CreateFromPrivateKeyInfo( |
const std::vector<uint8>& input) { |
if (input.empty()) |
@@ -101,20 +95,6 @@ RSAPrivateKey* RSAPrivateKey::CreateFromPrivateKeyInfo( |
return result.release(); |
} |
-// static |
-RSAPrivateKey* RSAPrivateKey::CreateSensitiveFromPrivateKeyInfo( |
- const std::vector<uint8>& input) { |
- NOTIMPLEMENTED(); |
- return NULL; |
-} |
- |
-// static |
-RSAPrivateKey* RSAPrivateKey::FindFromPublicKeyInfo( |
- const std::vector<uint8>& input) { |
- NOTIMPLEMENTED(); |
- return NULL; |
-} |
- |
RSAPrivateKey::RSAPrivateKey() |
: key_(NULL) { |
} |