diff options
Diffstat (limited to 'src/lib/libssl/src/doc/apps/passwd.pod')
-rw-r--r-- | src/lib/libssl/src/doc/apps/passwd.pod | 8 |
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> | |||
22 | The B<passwd> command computes the hash of a password typed at | 23 | The B<passwd> command computes the hash of a password typed at |
23 | run-time or the hash of each password in a list. The password list is | 24 | run-time or the hash of each password in a list. The password list is |
24 | taken from the named file for option B<-in file>, from stdin for | 25 | taken from the named file for option B<-in file>, from stdin for |
25 | option B<-stdin>, and from the command line otherwise. | 26 | option B<-stdin>, or from the command line, or from the terminal otherwise. |
26 | The Unix standard algorithm B<crypt> and the MD5-based BSD password | 27 | The Unix standard algorithm B<crypt> and the MD5-based BSD password |
27 | algorithm B<1> and its Apache variant B<apr1> are available. | 28 | algorithm 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 | ||
47 | Use the specified salt. | 48 | Use the specified salt. |
49 | When 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 | ||
55 | Read passwords from B<stdin>. | 57 | Read passwords from B<stdin>. |
56 | 58 | ||
59 | =item B<-noverify> | ||
60 | |||
61 | Don't verify when reading a password from the terminal. | ||
62 | |||
57 | =item B<-quiet> | 63 | =item B<-quiet> |
58 | 64 | ||
59 | Don't output warnings when passwords given at the command line are truncated. | 65 | Don't output warnings when passwords given at the command line are truncated. |