summaryrefslogtreecommitdiff
path: root/src/mongo/client/dbclientinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/dbclientinterface.h')
-rw-r--r--src/mongo/client/dbclientinterface.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/mongo/client/dbclientinterface.h b/src/mongo/client/dbclientinterface.h
index e72fdbcefd8..e4f90c82dea 100644
--- a/src/mongo/client/dbclientinterface.h
+++ b/src/mongo/client/dbclientinterface.h
@@ -925,24 +925,6 @@ protected:
virtual void _auth(const BSONObj& params);
- /**
- * Use the MONGODB-CR protocol to authenticate as "username" against the database "dbname",
- * with the given password. If digestPassword is false, the password is assumed to be
- * pre-digested. Returns false on failure, and sets "errmsg".
- */
- bool _authMongoCR(const std::string& dbname,
- const std::string& username,
- const std::string& pwd,
- BSONObj* info,
- bool digestPassword);
-
- /**
- * Use the MONGODB-X509 protocol to authenticate as "username. The certificate details
- * has already been communicated automatically as part of the connect call.
- * Returns false on failure and set "errmsg".
- */
- bool _authX509(const std::string& dbname, const std::string& username, BSONObj* info);
-
// should be set by subclasses during connection.
void _setServerRPCProtocols(rpc::ProtocolSet serverProtocols);