Browse Source

correct field for encyption is `password_hash` not `bcrypt`

pull/402/head
Jus de Patate_ 5 years ago
parent
commit
79baa2eb15
No known key found for this signature in database GPG Key ID: AD0245537CA3FC0D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      README.md

+ 1
- 1
README.md View File

@ -137,7 +137,7 @@ Passwords can be stored in `username.ini` (where "username" is the user's userna
$ php -a
> echo password_hash('desiredpassword', PASSWORD_BCRYPT);
````
This will produce a hash which is to be placed in the `password` field in `username.ini`. Ensure that the `encryption` field is set to `bcrypt`.
This will produce a hash which is to be placed in the `password` field in `username.ini`. Ensure that the `encryption` field is set to `password_hash`.
Both Online or Offline


Loading…
Cancel
Save