aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/install.php
diff options
context:
space:
mode:
authorms101 <aass@abwesend.de>2020-06-08 14:29:09 -0600
committerms101 <aass@abwesend.de>2020-06-08 14:29:09 -0600
commit267bbbca31c7b508d47a961a99012cb9c725e1f4 (patch)
tree749bf0fa18ba7741c84cd7733c2bac533ffca518 /install.php
parentd26862c5dcab1550a5c04e52438ed10034b050e7 (diff)
downloaddokuwiki-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.php2
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