Class: auth_ldap
Source Location: /security/class.auth_ldap.inc
Class auth_ldap
Method Summary
| boolean |
canMd5() |
Ldap can't handle passwords as md5 |
Methods
Ldap can't handle passwords as md5
API Tags:
Redefinition of:
- auth_interface::canMd5()
- Does the authentication method support md5 encoding of passwords?
int validateUser(
String
$user, String
$passwd
)
|
|
Authenticate a user.
Parameters:
|
String |
$user: |
The login of the user to authenticate. |
|
String |
$passwd: |
The password of the user. Note: if the canMd5 function of an implementation returns true, $passwd will be passed as an md5 string. |
API Tags:
| Return: | AUTH_SUCCESS - Authentication succesful AUTH_MISMATCH - Authentication failed, wrong user/password combination AUTH_LOCKED - Account is locked, can not login with current username. AUTH_ERROR - Authentication failed due to some error which cannot be solved by just trying again. If you return this value, you *must* also fill the m_fatalError variable. |
Redefinition of:
- auth_interface::validateUser()
- Authenticate a user.