From 85ac448559fe18830ace58f51b0c9b0e35e47a7f Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Thu, 14 Nov 2019 00:26:33 +0100 Subject: [PATCH 1/3] makepasswd: add page --- pages/common/makepasswd.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/makepasswd.md diff --git a/pages/common/makepasswd.md b/pages/common/makepasswd.md new file mode 100644 index 00000000000000..83bcb7032abba6 --- /dev/null +++ b/pages/common/makepasswd.md @@ -0,0 +1,19 @@ +# makepasswd + +> Generate and encrypt passwords. + +- Generate a random password: + +`makepasswd` + +- Generate a 10 characters long password: + +`makepasswd --chars {{10}}` + +- Generate a 5 to 10 characters long password: + +`makepasswd --minchars {{5}} --maxchars {{10}}` + +- Generate a password containing only the characters "b", "a" or "r": + +`makepasswd --string {{bar}}` From 4c1116cdb19c3a396283333886ce234a60e45504 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Thu, 14 Nov 2019 00:41:39 +0100 Subject: [PATCH 2/3] makepasswd: add default parameters --- pages/common/makepasswd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/makepasswd.md b/pages/common/makepasswd.md index 83bcb7032abba6..3cec8c3e86131d 100644 --- a/pages/common/makepasswd.md +++ b/pages/common/makepasswd.md @@ -2,7 +2,7 @@ > Generate and encrypt passwords. -- Generate a random password: +- Generate a random password (8 to 10 characters long, containing letters and numbers): `makepasswd` From 37e0cdfec7a432e6eec78b8d4967dff5f9c785c4 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Thu, 14 Nov 2019 22:53:47 +0100 Subject: [PATCH 3/3] Update pages/common/makepasswd.md Co-Authored-By: Marco Bonelli --- pages/common/makepasswd.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/common/makepasswd.md b/pages/common/makepasswd.md index 3cec8c3e86131d..00c7c2d4d8ae80 100644 --- a/pages/common/makepasswd.md +++ b/pages/common/makepasswd.md @@ -1,6 +1,7 @@ # makepasswd > Generate and encrypt passwords. +> More information: . - Generate a random password (8 to 10 characters long, containing letters and numbers):