changed hash algo in install.php from smd5 to bcrypt

This commit is contained in:
ms101 2020-06-08 14:29:09 -06:00
parent d26862c5dc
commit 267bbbca31
1 changed files with 1 additions and 1 deletions

View File

@ -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