From 5fae520ebe5836469b4930b42656e296860f1192 Mon Sep 17 00:00:00 2001 From: Patrick Lai Date: Sun, 13 Jun 2021 01:25:05 +1000 Subject: [PATCH] fix: placeholder password in hashed password example --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index b7d57a8c..a1170ea3 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -206,7 +206,7 @@ Again, please follow [./guide.md](./guide.md) for our recommendations on setting Yes you can! Set the value of `hashed-password` instead of `password`. Generate the hash with: ```shell -echo -n "password" | npx argon2-cli -e +echo -n "thisismypassword" | npx argon2-cli -e $argon2i$v=19$m=4096,t=3,p=1$wst5qhbgk2lu1ih4dmuxvg$ls1alrvdiwtvzhwnzcm1dugg+5dto3dt1d5v9xtlws4 ```