| 1234567891011 |
- #include "MySQLLDAPAuthModule.h"
- MySQLLDAPAuthModule::MySQLLDAPAuthModule(std::unique_ptr<ILDAPReader>&& _reader):
- ldapReader(std::move(_reader))
- {}
- bool MySQLLDAPAuthModule::Authenticate(const std::string& username, const std::string& password)
- {
- return username == "isundil" && password == "test";
- }
|