]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - doc/apps/passwd.pod
Import OpenSSL 1.0.2o.
[FreeBSD/FreeBSD.git] / doc / apps / passwd.pod
1 =pod
2
3 =head1 NAME
4
5 openssl-passwd,
6 passwd - compute password hashes
7
8 =head1 SYNOPSIS
9
10 B<openssl passwd>
11 [B<-crypt>]
12 [B<-1>]
13 [B<-apr1>]
14 [B<-salt> I<string>]
15 [B<-in> I<file>]
16 [B<-stdin>]
17 [B<-noverify>]
18 [B<-quiet>]
19 [B<-table>]
20 {I<password>}
21
22 =head1 DESCRIPTION
23
24 The B<passwd> command computes the hash of a password typed at
25 run-time or the hash of each password in a list.  The password list is
26 taken from the named file for option B<-in file>, from stdin for
27 option B<-stdin>, or from the command line, or from the terminal otherwise.
28 The Unix standard algorithm B<crypt> and the MD5-based BSD password
29 algorithm B<1> and its Apache variant B<apr1> are available.
30
31 =head1 OPTIONS
32
33 =over 4
34
35 =item B<-crypt>
36
37 Use the B<crypt> algorithm (default).
38
39 =item B<-1>
40
41 Use the MD5 based BSD password algorithm B<1>.
42
43 =item B<-apr1>
44
45 Use the B<apr1> algorithm (Apache variant of the BSD algorithm).
46
47 =item B<-salt> I<string>
48
49 Use the specified salt.
50 When reading a password from the terminal, this implies B<-noverify>.
51
52 =item B<-in> I<file>
53
54 Read passwords from I<file>.
55
56 =item B<-stdin>
57
58 Read passwords from B<stdin>.
59
60 =item B<-noverify>
61
62 Don't verify when reading a password from the terminal.
63
64 =item B<-quiet>
65
66 Don't output warnings when passwords given at the command line are truncated.
67
68 =item B<-table>
69
70 In the output list, prepend the cleartext password and a TAB character
71 to each password hash.
72
73 =back
74
75 =head1 EXAMPLES
76
77 B<openssl passwd -crypt -salt xx password> prints B<xxj31ZMTZzkVA>.
78
79 B<openssl passwd -1 -salt xxxxxxxx password> prints B<$1$xxxxxxxx$UYCIxa628.9qXjpQCjM4a.>.
80
81 B<openssl passwd -apr1 -salt xxxxxxxx password> prints B<$apr1$xxxxxxxx$dxHfLAsjHkDRmG83UXe8K0>.
82
83 =cut