3
3
# Mandos key generator - create a new OpenPGP key for a Mandos client
5
# Copyright © 2008,2009 Teddy Hogeborn
6
# Copyright © 2008,2009 Björn Påhlsson
5
# Copyright © 2008-2012 Teddy Hogeborn
6
# Copyright © 2008-2012 Björn Påhlsson
8
8
# This program is free software: you can redistribute it and/or modify
9
9
# it under the terms of the GNU General Public License as published by
18
18
# You should have received a copy of the GNU General Public License
19
19
# along with this program. If not, see <http://www.gnu.org/licenses/>.
21
# Contact the authors at <mandos@fukt.bsnet.se>.
21
# Contact the authors at <mandos@recompile.se>.
26
26
KEYDIR="/etc/keys/mandos"
192
192
shred --remove \"$RINGDIR\"/sec*;
193
193
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
194
194
rm --recursive --force \"$RINGDIR\";
195
tty --quiet && stty echo; \
200
202
if [ "$mode" = keygen ]; then
288
290
FILECOMMENT="Encrypted password for a Mandos client"
290
if [ -n "$PASSFILE" ]; then
294
echo -n "Enter passphrase: " >&2
295
first="$(head --lines=1 | tr --delete '\n')"
297
echo -n "Repeat passphrase: " >&2
298
second="$(head --lines=1 | tr --delete '\n')"
301
if [ "$first" != "$second" ]; then
302
echo "Passphrase mismatch" >&2
303
touch "$RINGDIR"/mismatch
292
while [ ! -s "$SECFILE" ]; do
293
if [ -n "$PASSFILE" ]; then
296
tty --quiet && stty -echo
297
echo -n "Enter passphrase: "
299
tty --quiet && echo >&2
300
echo -n "Repeat passphrase: "
306
if [ "$first" != "$second" ]; then
307
echo "Passphrase mismatch" >&2
308
touch "$RINGDIR"/mismatch
312
fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
313
--homedir "$RINGDIR" --trust-model always --armor \
314
--encrypt --sign --recipient "$FINGERPRINT" --comment \
315
"$FILECOMMENT" > "$SECFILE"
316
if [ -e "$RINGDIR"/mismatch ]; then
317
rm --force "$RINGDIR"/mismatch
307
fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
308
--homedir "$RINGDIR" --trust-model always --armor --encrypt \
309
--sign --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
311
if [ -e "$RINGDIR"/mismatch ]; then
312
rm --force "$RINGDIR"/mismatch