Index: net/cert/x509_util_openssl.cc |
diff --git a/net/cert/x509_util_openssl.cc b/net/cert/x509_util_openssl.cc |
index e98c2a08515ace5ba88027fe165fa9705405d190..e4dec9925751545ceabdeae3de66f386d639d281 100644 |
--- a/net/cert/x509_util_openssl.cc |
+++ b/net/cert/x509_util_openssl.cc |
@@ -59,6 +59,16 @@ bool CreateDomainBoundCertEC( |
return false; |
} |
+bool CreateSelfSignedCert(crypto::RSAPrivateKey* key, |
+ const std::string& common_name, |
+ uint32 serial_number, |
+ base::Time not_valid_before, |
+ base::Time not_valid_after, |
+ std::string* der_encoded) { |
+ NOTIMPLEMENTED(); |
+ return false; |
+} |
+ |
bool ParsePrincipalKeyAndValueByIndex(X509_NAME* name, |
int index, |
std::string* key, |