aboutsummaryrefslogtreecommitdiffstats
path: root/info/libpassphrase.texinfo
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-12-05 15:37:44 +0100
committerMattias Andrée <maandree@operamail.com>2015-12-05 15:37:44 +0100
commita77fa92645cd6ef100d3f70473579cf518c8aa9e (patch)
tree44faa51dc731054e3a26d29a8870670a2cdcc8e3 /info/libpassphrase.texinfo
parentm (diff)
downloadlibpassphrase-a77fa92645cd6ef100d3f70473579cf518c8aa9e.tar.gz
libpassphrase-a77fa92645cd6ef100d3f70473579cf518c8aa9e.tar.bz2
libpassphrase-a77fa92645cd6ef100d3f70473579cf518c8aa9e.tar.xz
add description of strength value
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'info/libpassphrase.texinfo')
-rw-r--r--info/libpassphrase.texinfo23
1 files changed, 17 insertions, 6 deletions
diff --git a/info/libpassphrase.texinfo b/info/libpassphrase.texinfo
index 475b50f..8b76067 100644
--- a/info/libpassphrase.texinfo
+++ b/info/libpassphrase.texinfo
@@ -165,6 +165,10 @@ the the screen. This is only used if combined with
will create make a line below the new current
line and use that line to draw the passphrase
strength meter if such capability is available.
+
+The label for the passphrase strength meter can
+be modified by setting the environment variable
+@env{LIBPASSPHRASE_STRENGTH_LABEL}.
@item PASSPHRASE_READ_BELOW_FREE
@code{passphrase_read2} may do as it please with
the line below the current line. This is only used
@@ -414,9 +418,6 @@ escape sequence, followed by a new line or
whitespace; the rest of the is ignored. The
program must also accept the flag @code{-r},
telling it not to discard any input.
-
-
-
@end table
@@ -426,7 +427,7 @@ In addition, you may use the follow flags.
@item @code{PASSPHRASE_STAR_CHAR}
The text to print instead of the character `*' when
-@code{PASSPHRASE_STAR} is used. For example you may run
+@code{PASSPHRASE_STAR} is used. For example, you may run
@example
make OPTIONS=PASSPHRASE_STAR \
PASSPHRASE_STAR_CHAR="#"
@@ -434,7 +435,7 @@ make OPTIONS=PASSPHRASE_STAR \
@item @code{PASSPHRASE_TEXT_EMPTY}
The text to print instead of the `(empty)' when
-@code{PASSPHRASE_TEXT} is used. For example you may run
+@code{PASSPHRASE_TEXT} is used. For example, you may run
@example
make OPTIONS=PASSPHRASE_TEXT \
PASSPHRASE_TEXT_EMPTY="there is nothing here"
@@ -442,12 +443,22 @@ make OPTIONS=PASSPHRASE_TEXT \
@item @code{PASSPHRASE_TEXT_NOT_EMPTY}
The text to print instead of the `(not empty)' when
-@code{PASSPHRASE_TEXT} is used. For example you may run
+@code{PASSPHRASE_TEXT} is used. For example, you may run
@example
make OPTIONS=PASSPHRASE_TEXT \
PASSPHRASE_TEXT_NOT_EMPTY="there is something here"
@end example
+@item @code{LIBPASSPHRASE_STRENGTH_LABEL}
+The text to print instead of the `Strength:' when
+@code{PASSPHRASE_METER} is used and a new passphrase
+is being entered. For example, you may run
+@example
+make OPTIONS=PASSPHRASE_METER \
+ LIBPASSPHRASE_STRENGTH_LABEL="Hope meter:"
+@end example
+
+
@end table