summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/doc/apps/passwd.pod
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/doc/apps/passwd.pod')
-rw-r--r--src/lib/libssl/src/doc/apps/passwd.pod8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/lib/libssl/src/doc/apps/passwd.pod b/src/lib/libssl/src/doc/apps/passwd.pod
index 6e098940c7..07d849c824 100644
--- a/src/lib/libssl/src/doc/apps/passwd.pod
+++ b/src/lib/libssl/src/doc/apps/passwd.pod
@@ -13,6 +13,7 @@ B<openssl passwd>
13[B<-salt> I<string>] 13[B<-salt> I<string>]
14[B<-in> I<file>] 14[B<-in> I<file>]
15[B<-stdin>] 15[B<-stdin>]
16[B<-noverify>]
16[B<-quiet>] 17[B<-quiet>]
17[B<-table>] 18[B<-table>]
18{I<password>} 19{I<password>}
@@ -22,7 +23,7 @@ B<openssl passwd>
22The B<passwd> command computes the hash of a password typed at 23The B<passwd> command computes the hash of a password typed at
23run-time or the hash of each password in a list. The password list is 24run-time or the hash of each password in a list. The password list is
24taken from the named file for option B<-in file>, from stdin for 25taken from the named file for option B<-in file>, from stdin for
25option B<-stdin>, and from the command line otherwise. 26option B<-stdin>, or from the command line, or from the terminal otherwise.
26The Unix standard algorithm B<crypt> and the MD5-based BSD password 27The Unix standard algorithm B<crypt> and the MD5-based BSD password
27algorithm B<1> and its Apache variant B<apr1> are available. 28algorithm B<1> and its Apache variant B<apr1> are available.
28 29
@@ -45,6 +46,7 @@ Use the B<apr1> algorithm (Apache variant of the BSD algorithm).
45=item B<-salt> I<string> 46=item B<-salt> I<string>
46 47
47Use the specified salt. 48Use the specified salt.
49When reading a password from the terminal, this implies B<-noverify>.
48 50
49=item B<-in> I<file> 51=item B<-in> I<file>
50 52
@@ -54,6 +56,10 @@ Read passwords from I<file>.
54 56
55Read passwords from B<stdin>. 57Read passwords from B<stdin>.
56 58
59=item B<-noverify>
60
61Don't verify when reading a password from the terminal.
62
57=item B<-quiet> 63=item B<-quiet>
58 64
59Don't output warnings when passwords given at the command line are truncated. 65Don't output warnings when passwords given at the command line are truncated.