sekrit: increase default length to 44

This makes all the default passwords valid Base64 yielding 264 bits of
entropy.
This commit is contained in:
Lucas 2023-11-25 10:49:40 +00:00
parent 19049d2472
commit 6b2c9dac0c
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ If
is provided, the randomly generated sequence will be
.Ar length
characters long.
Defaults to 43.
Defaults to 44.
.It Nm Cm get Ar key
Decrypts the value associated with
.Ar key

View File

@ -116,7 +116,7 @@ sekrit_cp()
sekrit_gen()
{
OPTIND=1
len=43
len=44
while getopts l: flag; do
case "$flag" in
l) len=$(to_number "$OPTARG") ||