diff options
author | Patrick Michel <public@pbmichel.de> | 2011-11-27 10:55:27 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2011-11-27 10:55:27 +0100 |
commit | 502a92e072be7b42750b4c9032e7269d1fd7c7b4 (patch) | |
tree | 9fccf993ebed2bda0ecb0e6e8bf70d802d3e54b8 /lib/plugins | |
parent | c66c7229a0dfc4f9f06dadda98408679fa7a18d6 (diff) | |
download | rpg-502a92e072be7b42750b4c9032e7269d1fd7c7b4.tar.gz rpg-502a92e072be7b42750b4c9032e7269d1fd7c7b4.tar.bz2 |
MD5 password hash format of the LDAP RFC FS#2378
This implements the salted MD5 password hash format of the LDAP RFC.
The format is quite simple the password, followed by the 8 byte hash in
base64 encoding, which results in 32 characters, prepended with the
string "{smd5}".
Diffstat (limited to 'lib/plugins')
-rw-r--r-- | lib/plugins/config/settings/config.metadata.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/config/settings/config.metadata.php b/lib/plugins/config/settings/config.metadata.php index 5f2c32ea7..c943a2fad 100644 --- a/lib/plugins/config/settings/config.metadata.php +++ b/lib/plugins/config/settings/config.metadata.php @@ -123,7 +123,7 @@ $meta['_authentication'] = array('fieldset'); $meta['useacl'] = array('onoff'); $meta['autopasswd'] = array('onoff'); $meta['authtype'] = array('authtype'); -$meta['passcrypt'] = array('multichoice','_choices' => array('smd5','md5','apr1','sha1','ssha','crypt','mysql','my411','kmd5','pmd5','hmd5')); +$meta['passcrypt'] = array('multichoice','_choices' => array('smd5','smd6','md5','apr1','sha1','ssha','crypt','mysql','my411','kmd5','pmd5','hmd5')); $meta['defaultgroup']= array('string'); $meta['superuser'] = array('string'); $meta['manager'] = array('string'); |