6 lines
282 B
Python
6 lines
282 B
Python
|
# ------------------------------------------------------------------------------
|
||
|
def authenticate(login, password, ldapConfig, tool):
|
||
|
'''Tries to authenticate user p_login in the LDAP.'''
|
||
|
return
|
||
|
# ------------------------------------------------------------------------------
|