diff options
author | ms101 <aass@abwesend.de> | 2020-06-08 14:29:09 -0600 |
---|---|---|
committer | ms101 <aass@abwesend.de> | 2020-06-08 14:29:09 -0600 |
commit | 267bbbca31c7b508d47a961a99012cb9c725e1f4 (patch) | |
tree | 749bf0fa18ba7741c84cd7733c2bac533ffca518 /install.php | |
parent | d26862c5dcab1550a5c04e52438ed10034b050e7 (diff) | |
download | dokuwiki-267bbbca31c7b508d47a961a99012cb9c725e1f4.tar.gz dokuwiki-267bbbca31c7b508d47a961a99012cb9c725e1f4.zip |
changed hash algo in install.php from smd5 to bcrypt
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 3b05267e7..0d08e764c 100644 --- a/install.php +++ b/install.php @@ -378,7 +378,7 @@ EOT; if ($d['acl']) { // hash the password $phash = new \dokuwiki\PassHash(); - $pass = $phash->hash_smd5($d['password']); + $pass = $phash->hash_bcrypt($d['password']); // create users.auth.php $output = <<<EOT |