Chromium Code Reviews| 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..0c3d1c2674c2c17e986b10613ef78ced6e356f23 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 { |
|
wtc
2013/06/21 02:50:30
This line is missing a closing parenthesis ')'.
|
| + NOTIMPLEMENTED(); |
| + return false; |
| +} |
| + |
| bool ParsePrincipalKeyAndValueByIndex(X509_NAME* name, |
| int index, |
| std::string* key, |