X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/213e9d2941dbedbce8fd639fbf09552ac72ad728..refs/pull/3630/head:/app/Config/hashing.php diff --git a/app/Config/hashing.php b/app/Config/hashing.php index ca73c5586..585ee094c 100644 --- a/app/Config/hashing.php +++ b/app/Config/hashing.php @@ -12,9 +12,8 @@ return [ // Default Hash Driver // This option controls the default hash driver that will be used to hash - // passwords for your application. By default, the bcrypt algorithm is - // used; however, you remain free to modify this option if you wish. - // Supported: "bcrypt", "argon" + // passwords for your application. By default, the bcrypt algorithm is used. + // Supported: "bcrypt", "argon", "argon2id" 'driver' => 'bcrypt', // Bcrypt Options @@ -30,9 +29,9 @@ return [ // passwords are hashed using the Argon algorithm. These will allow you // to control the amount of time it takes to hash the given password. 'argon' => [ - 'memory' => 1024, + 'memory' => 1024, 'threads' => 2, - 'time' => 2, + 'time' => 2, ], -]; \ No newline at end of file +];