3
3
# Mandos key generator - create a new OpenPGP key for a Mandos client
5
# Copyright © 2008-2013 Teddy Hogeborn
6
# Copyright © 2008-2013 Björn Påhlsson
5
# Copyright © 2008 Teddy Hogeborn & Björn Påhlsson
8
7
# This program is free software: you can redistribute it and/or modify
9
8
# it under the terms of the GNU General Public License as published by
18
17
# You should have received a copy of the GNU General Public License
19
18
# along with this program. If not, see <http://www.gnu.org/licenses/>.
21
# Contact the authors at <mandos@recompile.se>.
20
# Contact the authors at <mandos@fukt.bsnet.se>.
26
25
KEYDIR="/etc/keys/mandos"
31
30
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
32
KEYCOMMENT="Mandos client key"
36
35
KEYCOMMENT_ORIG="$KEYCOMMENT"
60
59
-v, --version Show program's version number and exit
61
60
-h, --help Show this help message and exit
62
61
-d DIR, --dir DIR Target directory for key files
63
-t TYPE, --type TYPE Key type. Default is RSA.
62
-t TYPE, --type TYPE Key type. Default is DSA.
64
63
-l BITS, --length BITS
65
Key length in bits. Default is 4096.
64
Key length in bits. Default is 2048.
66
65
-s TYPE, --subtype TYPE
67
Subkey type. Default is RSA.
66
Subkey type. Default is ELG-E.
68
67
-L BITS, --sublength BITS
69
Subkey length in bits. Default is 4096.
68
Subkey length in bits. Default is 2048.
70
69
-n NAME, --name NAME Name of key. Default is the FQDN.
71
70
-e ADDRESS, --email ADDRESS
72
71
Email address of key. Default is empty.
73
72
-c TEXT, --comment TEXT
74
Comment field for key. The default is empty.
73
Comment field for key. The default value is
75
75
-x TIME, --expire TIME
76
76
Key expire time. Default is no expiration.
77
77
See gpg(1) for syntax.
191
191
shred --remove \"$RINGDIR\"/sec*;
192
192
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
193
193
rm --recursive --force \"$RINGDIR\";
194
tty --quiet && stty echo; \
201
199
if [ "$mode" = keygen ]; then
203
201
cat >"$BATCHFILE" <<-EOF
204
202
Key-Type: $KEYTYPE
205
203
Key-Length: $KEYLENGTH
204
#Key-Usage: encrypt,sign,auth
207
205
Subkey-Type: $SUBKEYTYPE
208
206
Subkey-Length: $SUBKEYLENGTH
209
Subkey-Usage: encrypt
207
#Subkey-Usage: encrypt,sign,auth
210
208
Name-Real: $KEYNAME
223
Note: Due to entropy requirements, key generation could take
224
anything from a few minutes to SEVERAL HOURS. Please be
225
patient and/or supply the system with more entropy if needed.
231
# Make sure trustdb.gpg exists;
232
# this is a workaround for Debian bug #737128
233
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
234
--homedir "$RINGDIR" \
235
--import-ownertrust < /dev/null
236
219
# Generate a new key in the key rings
237
220
gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
238
221
--homedir "$RINGDIR" --trust-model always \
239
222
--gen-key "$BATCHFILE"
240
223
rm --force "$BATCHFILE"
247
225
# Backup any old key files
248
226
if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
249
227
2>/dev/null; then
294
272
FILECOMMENT="Encrypted password for a Mandos client"
296
while [ ! -s "$SECFILE" ]; do
297
if [ -n "$PASSFILE" ]; then
274
if [ -n "$PASSFILE" ]; then
278
echo -n "Enter passphrase: " >&2
279
first="$(head --lines=1 | tr --delete '\n')"
280
echo -n -e "\nRepeat passphrase: " >&2
281
second="$(head --lines=1 | tr --delete '\n')"
284
if [ "$first" != "$second" ]; then
285
echo -e "Passphrase mismatch" >&2
300
tty --quiet && stty -echo
301
echo -n "Enter passphrase: " >&2
303
tty --quiet && echo >&2
304
echo -n "Repeat passphrase: " >&2
310
if [ "$first" != "$second" ]; then
311
echo "Passphrase mismatch" >&2
312
touch "$RINGDIR"/mismatch
316
fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
317
--homedir "$RINGDIR" --trust-model always --armor \
318
--encrypt --sign --recipient "$FINGERPRINT" --comment \
319
"$FILECOMMENT" > "$SECFILE"
320
if [ -e "$RINGDIR"/mismatch ]; then
321
rm --force "$RINGDIR"/mismatch
290
fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
291
--homedir "$RINGDIR" --trust-model always --armor --encrypt \
292
--recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
294
status="${PIPESTATUS[0]}"
295
if [ "$status" -ne 0 ]; then