summaryrefslogtreecommitdiffstats
path: root/net/base/cert_database_openssl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/base/cert_database_openssl.cc')
-rw-r--r--net/base/cert_database_openssl.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/net/base/cert_database_openssl.cc b/net/base/cert_database_openssl.cc
index ca429c08..76bd3f8 100644
--- a/net/base/cert_database_openssl.cc
+++ b/net/base/cert_database_openssl.cc
@@ -82,6 +82,13 @@ bool CertDatabase::DeleteCertAndKey(const X509Certificate* cert) {
return false;
}
+bool CertDatabase::DeleteCertAndKeyByLabel(const std::string& label) {
+ // TODO(gspencer):Find the certificate with the given label
+ // (nickname), and delete it.
+ NOTIMPLEMENTED();
+ return false;
+}
+
CertDatabase::TrustBits CertDatabase::GetCertTrust(const X509Certificate* cert,
CertType type) const {
// TODO(bulach): implement me.