From 79baa2eb15697e6be57e9c83b2a9ab2094cbde67 Mon Sep 17 00:00:00 2001 From: Jus de Patate_ Date: Wed, 3 Jun 2020 14:24:27 +0200 Subject: [PATCH] correct field for encyption is `password_hash` not `bcrypt` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e4121f4..c1deada 100644 --- a/README.md +++ b/README.md @@ -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