From 0a2245959f9425c708d8c4208bd4c7583e338731 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 30 Jun 2021 22:09:27 +0200 Subject: [PATCH] Clarified the --help of test.pl: passthrough and potthrough generate a new salt on each invocation, and verify parses the salt. --- tools/test.pl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/test.pl b/tools/test.pl index f414932de..0c909d0ae 100755 --- a/tools/test.pl +++ b/tools/test.pl @@ -599,16 +599,19 @@ sub usage_exit . "\n" . "Passthrough:\n" . " Generates hashes for strings entered via stdin and prints them to stdout.\n" + . " Each call generates a hash with a new random salt.\n" . "\n" . "Potthrough:\n" . " Like passthrough, but includes both the hash and the plain in hash:plain format,\n" - . " similar to the classic potfile format, yet this only works for unsalted hashes.\n" + . " similar to the classic potfile format. Each call generates a hash wit a new \n" + . " random salt.\n" . "\n" . "Verify:\n" . " Reads a list of hashes from and a list of hash:password pairs from\n" . " . Hashes every password and compares the hash to the corresponding\n" . " entry in the . If the hashes match and the hash is present in the\n" - . " list from , it will be written to the .\n" + . " list from , it will be written to the . The salt of the hash\n" + . " is ignored in the comparison.\n" . "\n"; exit 1;