1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
.\" $NetBSD: pwhash.1,v 1.11 2021/10/20 17:30:28 nia Exp $
.\" $OpenBSD: encrypt.1,v 1.16 2000/11/09 17:52:07 aaron Exp $
.\"
.\" Copyright (c) 1996, Jason Downs. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
.\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
.\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
.\" CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.Dd October 20, 2021
.Dt PWHASH 1
.Os
.Sh NAME
.Nm pwhash
.Nd hashes passwords from the command line or standard input
.Sh SYNOPSIS
.Nm pwhash
.Op Fl km
.Op Fl A Ar variant[,params]
.Op Fl b Ar rounds
.Op Fl S Ar rounds
.Op Fl s Ar salt
.Op Fl p | Ar string
.Sh DESCRIPTION
.Nm
prints the encrypted form of
.Ar string
to the standard output.
This is mostly useful for encrypting passwords from within scripts.
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl b Ar rounds
Encrypt the string using Blowfish hashing with the specified
.Ar rounds .
.It Fl k
Run in
.Xr makekey 8
compatible mode.
A single combined key (eight chars) and salt (two chars) with no
intermediate space are read from standard input and the DES encrypted
result is written to standard output without a terminating newline.
.It Fl m
Hash the string using MD5.
.It Fl p
Prompt for a single string with echo turned off.
.It Fl S Ar rounds
Encrypt the salt with HMAC-SHA1 using the password as key and the specified
.Ar rounds
as a hint for the number of iterations.
.It Fl A Ar variant[,params]
Encrypt the specified string using Argon2 hashing parameterized using
variant
.Ar variant ,
where
.Ar variant
is one of the following: argon2id, argon2i, argon2d. Variant
.Ar argon2id
is recommended.
Following the required
.Ar variant
name, three optional comma-delimited parameters may be provided,
t=n Specify the number of iterations to n.
m=n Specify the memory usage in KB to n.
p=n Specify the number of threads to n.
This is currently ignored.
If unspecified, default parameters are calculated based on system
performance and available resources.
.It Fl s Ar salt
Encrypt the string using DES, with the specified
.Ar salt .
.El
.Pp
If no
.Ar string
is specified,
.Nm
reads one string per line from standard input, encrypting each one
with the chosen algorithm from above.
In the event that no specific algorithm is given as a command line option,
the algorithm specified in the default class in
.Pa /etc/passwd.conf
will be used.
.Pp
For MD5, Blowfish, and Argon2 a new random salt is automatically generated for each
password.
.Pp
Specifying the
.Ar string
on the command line should be discouraged; using the
standard input is more secure.
.Sh EXAMPLES
The following specifies the argon2id variant, using 1 thread and 4096KB of memory
pwhash -A argon2id,p=1,m=4096 -p
.Sh FILES
.Bl -tag -width /etc/passwd.conf -compact
.It Pa /etc/passwd.conf
.El
.Sh SEE ALSO
.Xr crypt 3 ,
.Xr passwd.conf 5
|