Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(879)

Unified Diff: net/base/cert_database_openssl.cc

Issue 10458069: Reland: Fix imported server certs being distrusted in NSS 3.13. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix the test failures Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/cert_database_nss_unittest.cc ('k') | net/net.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/cert_database_openssl.cc
diff --git a/net/base/cert_database_openssl.cc b/net/base/cert_database_openssl.cc
index 82f7fd8af359337f8b54bb3f2fff8ba89c0ed4a4..fcdf10b3299f0241546d4697cd744f676c28f685 100644
--- a/net/base/cert_database_openssl.cc
+++ b/net/base/cert_database_openssl.cc
@@ -36,66 +36,4 @@ int CertDatabase::AddUserCert(X509Certificate* cert) {
return ERR_NOT_IMPLEMENTED;
}
-void CertDatabase::ListCerts(CertificateList* certs) {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
-}
-
-CryptoModule* CertDatabase::GetPublicModule() const {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
- return NULL;
-}
-
-CryptoModule* CertDatabase::GetPrivateModule() const {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
- return NULL;
-}
-
-void CertDatabase::ListModules(CryptoModuleList* modules, bool need_rw) const {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
- modules->clear();
-}
-
-int CertDatabase::ImportFromPKCS12(CryptoModule* module,
- const std::string& data,
- const string16& password,
- bool is_extractable,
- CertificateList* imported_certs) {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
- return ERR_NOT_IMPLEMENTED;
-}
-
-int CertDatabase::ExportToPKCS12(const CertificateList& certs,
- const string16& password,
- std::string* output) const {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
- return 0;
-}
-
-bool CertDatabase::DeleteCertAndKey(const X509Certificate* cert) {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
- return false;
-}
-
-CertDatabase::TrustBits CertDatabase::GetCertTrust(const X509Certificate* cert,
- CertType type) const {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
- return 0;
-}
-
-bool CertDatabase::SetCertTrust(const X509Certificate* cert,
- CertType type,
- TrustBits trust_bits) {
- // TODO(bulach): implement me.
- NOTIMPLEMENTED();
- return false;
-}
-
} // namespace net
« no previous file with comments | « net/base/cert_database_nss_unittest.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698