mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
historically crypt is called des in ldap
This commit is contained in:
parent
e0614a8a6a
commit
99910cd62e
@ -151,7 +151,7 @@ function passwdhashes($config,$return_hashes=false)
|
|||||||
'ssha' => 'ssha'.' ('.lang('default').')',
|
'ssha' => 'ssha'.' ('.lang('default').')',
|
||||||
'smd5' => 'smd5',
|
'smd5' => 'smd5',
|
||||||
'sha' => 'sha',
|
'sha' => 'sha',
|
||||||
'des' => 'des',
|
'des' => 'des', // historically crypt is called des in ldap
|
||||||
);
|
);
|
||||||
/* Check for available crypt methods based on what is defined by php */
|
/* Check for available crypt methods based on what is defined by php */
|
||||||
if(@defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1)
|
if(@defined('CRYPT_BLOWFISH') && CRYPT_BLOWFISH == 1)
|
||||||
@ -166,17 +166,13 @@ function passwdhashes($config,$return_hashes=false)
|
|||||||
{
|
{
|
||||||
$hashes['ext_crypt'] = 'ext_crypt';
|
$hashes['ext_crypt'] = 'ext_crypt';
|
||||||
}
|
}
|
||||||
if(@defined('CRYPT_STD_DES') && CRYPT_STD_DES == 1)
|
|
||||||
{
|
|
||||||
$hashes['crypt'] = 'crypt';
|
|
||||||
}
|
|
||||||
|
|
||||||
$hashes += array(
|
$hashes += array(
|
||||||
'md5' => 'md5',
|
'md5' => 'md5',
|
||||||
'plain' => 'plain',
|
'plain' => 'plain',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $return_hashes ? $hashes : _options_from($hashes, $config['ldap_encryption_type'] ? $config['ldap_encryption_type'] : 'crypt');
|
return $return_hashes ? $hashes : _options_from($hashes, $config['ldap_encryption_type'] ? $config['ldap_encryption_type'] : 'des');
|
||||||
}
|
}
|
||||||
|
|
||||||
function sql_passwdhashes($config,$return_hashes=false)
|
function sql_passwdhashes($config,$return_hashes=false)
|
||||||
|
Loading…
Reference in New Issue
Block a user