Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 14, 2024
1 parent 058d5ba commit 2099c29
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,15 @@ This approach to graceful decryption allows users to keep using your application

For more information on encryption in Laravel, check out the [encryption documentation](/docs/{{version}}/encryption).

<a name="automatic-password-rehashing"></a>
### Automatic Password Rehashing

_Automatic password rehashing was contributed by [Stephen Rees-Carter](https://github.com/valorin)_.

Laravel's default password hashing algorithm is bcrypt. The "work factor" for bcrypt hashes can be adjusted via the `config/hashing.php` configuration file or the `BCRYPT_ROUNDS` environment variable.

Typically, the bcrypt work factor should be increased over time as CPU / GPU processing power increases. If you increase the bcrypt work factor for your application, Laravel will now gracefully and automatically rehash user passwords as users authenticate with your application.

<a name="prompt-validation"></a>
### Prompt Validation

Expand Down

0 comments on commit 2099c29

Please sign in to comment.