/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-keygen

  • Committer: Teddy Hogeborn
  • Date: 2010-09-30 06:24:20 UTC
  • Revision ID: teddy@fukt.bsnet.se-20100930062420-nm7nlb160myyzj82
* mandos-monitor.xml (KEYS): Bug fix: Changed "r" to "R".
* .bzrignore: Updated.
  (debian/po/messages.mo, debian/po/templates.pot): Removed.
  (plugins.d/plymouth): Added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
3
3
# Mandos key generator - create a new OpenPGP key for a Mandos client
4
4
5
 
# Copyright © 2008-2011 Teddy Hogeborn
6
 
# Copyright © 2008-2011 Björn Påhlsson
 
5
# Copyright © 2008-2010 Teddy Hogeborn
 
6
# Copyright © 2008-2010 Björn Påhlsson
7
7
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
21
21
# Contact the authors at <mandos@fukt.bsnet.se>.
22
22
23
23
 
24
 
VERSION="1.3.1"
 
24
VERSION="1.2"
25
25
 
26
26
KEYDIR="/etc/keys/mandos"
27
27
KEYTYPE=DSA
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; \
 
195
stty echo; \
196
196
" EXIT
197
197
 
198
 
set -e
199
 
 
200
198
umask 077
201
199
 
202
200
if [ "$mode" = keygen ]; then
289
287
    
290
288
    FILECOMMENT="Encrypted password for a Mandos client"
291
289
    
292
 
    while [ ! -s "$SECFILE" ]; do
293
 
        if [ -n "$PASSFILE" ]; then
294
 
            cat "$PASSFILE"
 
290
    if [ -n "$PASSFILE" ]; then
 
291
        cat "$PASSFILE"
 
292
    else
 
293
        stty -echo
 
294
        echo -n "Enter passphrase: " >&2
 
295
        first="$(head --lines=1 | tr --delete '\n')"
 
296
        echo >&2
 
297
        echo -n "Repeat passphrase: " >&2
 
298
        second="$(head --lines=1 | tr --delete '\n')"
 
299
        echo >&2
 
300
        stty echo
 
301
        if [ "$first" != "$second" ]; then
 
302
            echo "Passphrase mismatch" >&2
 
303
            touch "$RINGDIR"/mismatch
295
304
        else
296
 
            tty --quiet && stty -echo
297
 
            read -p "Enter passphrase: " first
298
 
            tty --quiet && echo >&2
299
 
            read -p "Repeat passphrase: " second
300
 
            if tty --quiet; then
301
 
                echo >&2
302
 
                stty echo
303
 
            fi
304
 
            if [ "$first" != "$second" ]; then
305
 
                echo "Passphrase mismatch" >&2
306
 
                touch "$RINGDIR"/mismatch
307
 
            else
308
 
                echo -n "$first"
309
 
            fi
310
 
        fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
311
 
            --homedir "$RINGDIR" --trust-model always --armor \
312
 
            --encrypt --sign --recipient "$FINGERPRINT" --comment \
313
 
            "$FILECOMMENT" > "$SECFILE"
314
 
        if [ -e "$RINGDIR"/mismatch ]; then
315
 
            rm --force "$RINGDIR"/mismatch
316
 
            if tty --quiet; then
317
 
                > "$SECFILE"
318
 
            else
319
 
                exit 1
320
 
            fi
 
305
            echo -n "$first"
321
306
        fi
322
 
    done
 
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" \
 
310
        > "$SECFILE"
 
311
    if [ -e "$RINGDIR"/mismatch ]; then
 
312
        rm --force "$RINGDIR"/mismatch
 
313
        exit 1
 
314
    fi
323
315
    
324
316
    cat <<-EOF
325
317
        [$KEYNAME]