From da459b3a2e16844ecf28f0cef77a55b9287e4fd0 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Sun, 1 Dec 2019 11:18:26 +0300 Subject: [PATCH] Linux does not have sha256sum command --- README | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README b/README index 1ca422d..aae1bb3 100644 --- a/README +++ b/README @@ -33,8 +33,10 @@ To get Argon2i hashed-password you can use any of following tools: To get SHA256 hashed-password you can use your operating system tools: - echo -n 'password' | sha256 - for BSD-based systems - echo -n 'password' | sha256sum - for Linux-based systems + # BSD-based systems: + $ echo -n 'password' | sha256 + # GNU/Linux-based systems + $ echo -n 'password' | sha256sum For example user "foo" with password "bar" can have the following hashed passwords: -- 2.48.1