Add option to list available password types - closes #143

This commit is contained in:
EtienneBarbier
2021-12-01 14:10:16 +01:00
committed by Deon George
parent 1c7340ce48
commit a8c9abe22b
3 changed files with 50 additions and 21 deletions

View File

@@ -554,6 +554,30 @@ class Config {
'desc'=>'Disable random salt for crypt()',
'default'=>false);
$this->default->password['available_types'] = array(
'desc'=>'List of available password types used for encryption',
'default'=>array(
''=>'clear',
'bcrypt'=>'bcrypt',
'blowfish'=>'blowfish',
'crypt'=>'crypt',
'ext_des'=>'ext_des',
'md5'=>'md5',
'k5key'=>'k5key',
'md5crypt'=>'md5crypt',
'sha'=>'sha',
'smd5'=>'smd5',
'ssha'=>'ssha',
'sha256'=>'sha256',
'ssha256'=>'ssha256',
'sha384'=>'sha384',
'ssha384'=>'ssha384',
'sha512'=>'sha512',
'ssha512'=>'ssha512',
'sha256crypt'=>'sha256crypt',
'sha512crypt'=>'sha512crypt',
));
/** Search display
* By default, when searching you may display a list or a table of results.
* Set this to 'table' to see table formatted results.