/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: 2011-07-25 18:49:17 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110725184917-m9eov06ex6vn9877
* mandos-monitor (MandosClientPropertyCache): Save match tag for
                                              PropertyChanged signal.
  (MandosClientPropertyCache.delete): New; unregister signal.
  (MandosClientWidget.__init__): Save matches for signals.
  (MandosClientWidget): Unregister signals.
  (UserInterface.find_and_remove_client): Log message when removing
                                          a nonexisting client.  Call
                                          client.delete() instead of
                                          self.remove_client().

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-2012 Teddy Hogeborn
6
 
# Copyright © 2008-2012 Björn Påhlsson
 
5
# Copyright © 2008-2011 Teddy Hogeborn
 
6
# Copyright © 2008-2011 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
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/>.
20
20
21
 
# Contact the authors at <mandos@recompile.se>.
 
21
# Contact the authors at <mandos@fukt.bsnet.se>.
22
22
23
23
 
24
 
VERSION="1.6.0"
 
24
VERSION="1.3.0"
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
198
set -e
289
289
    
290
290
    FILECOMMENT="Encrypted password for a Mandos client"
291
291
    
292
 
    while [ ! -s "$SECFILE" ]; do
293
 
        if [ -n "$PASSFILE" ]; then
294
 
            cat "$PASSFILE"
 
292
    if [ -n "$PASSFILE" ]; then
 
293
        cat "$PASSFILE"
 
294
    else
 
295
        stty -echo
 
296
        echo -n "Enter passphrase: " >&2
 
297
        first="$(head --lines=1 | tr --delete '\n')"
 
298
        echo >&2
 
299
        echo -n "Repeat passphrase: " >&2
 
300
        second="$(head --lines=1 | tr --delete '\n')"
 
301
        echo >&2
 
302
        stty echo
 
303
        if [ "$first" != "$second" ]; then
 
304
            echo "Passphrase mismatch" >&2
 
305
            touch "$RINGDIR"/mismatch
295
306
        else
296
 
            tty --quiet && stty -echo
297
 
            echo -n "Enter passphrase: "
298
 
            read first
299
 
            tty --quiet && echo >&2
300
 
            echo -n "Repeat passphrase: "
301
 
            read second
302
 
            if tty --quiet; then
303
 
                echo >&2
304
 
                stty echo
305
 
            fi
306
 
            if [ "$first" != "$second" ]; then
307
 
                echo "Passphrase mismatch" >&2
308
 
                touch "$RINGDIR"/mismatch
309
 
            else
310
 
                echo -n "$first"
311
 
            fi
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
318
 
            if tty --quiet; then
319
 
                > "$SECFILE"
320
 
            else
321
 
                exit 1
322
 
            fi
 
307
            echo -n "$first"
323
308
        fi
324
 
    done
 
309
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
310
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
 
311
        --sign --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
 
312
        > "$SECFILE"
 
313
    if [ -e "$RINGDIR"/mismatch ]; then
 
314
        rm --force "$RINGDIR"/mismatch
 
315
        exit 1
 
316
    fi
325
317
    
326
318
    cat <<-EOF
327
319
        [$KEYNAME]