/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-27 17:58:27 UTC
  • mto: (237.4.29 release)
  • mto: This revision was merged to the branch mainline in revision 490.
  • Revision ID: teddy@fukt.bsnet.se-20110727175827-nrd1ysjl4jrh6qw1
Tags: version-1.3.1-1
* Makefile (version): Changed to "1.3.1".
* NEWS (Version 1.3.1): New entry.
* debian/changelog (1.3.1-1): - '' -

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 Teddy Hogeborn & Björn Påhlsson
 
5
# Copyright © 2008-2011 Teddy Hogeborn
 
6
# Copyright © 2008-2011 Björn Påhlsson
6
7
7
8
# This program is free software: you can redistribute it and/or modify
8
9
# it under the terms of the GNU General Public License as published by
20
21
# Contact the authors at <mandos@fukt.bsnet.se>.
21
22
22
23
 
23
 
VERSION="1.0"
 
24
VERSION="1.3.1"
24
25
 
25
26
KEYDIR="/etc/keys/mandos"
26
27
KEYTYPE=DSA
146
147
        echo "Invalid key length" >&2
147
148
        exit 1
148
149
    fi
149
 
 
 
150
    
150
151
    if [ -z "$KEYEXPIRE" ]; then
151
152
        echo "Empty key expiration" >&2
152
153
        exit 1
171
172
    if [ -n "$KEYEMAIL" ]; then
172
173
        KEYEMAILLINE="Name-Email: $KEYEMAIL"
173
174
    fi
174
 
 
 
175
    
175
176
    # Create temporary gpg batch file
176
177
    BATCHFILE="`mktemp -t mandos-keygen-batch.XXXXXXXXXX`"
177
178
fi
194
195
stty echo; \
195
196
" EXIT
196
197
 
 
198
set -e
 
199
 
197
200
umask 077
198
201
 
199
202
if [ "$mode" = keygen ]; then
216
219
        %commit
217
220
        EOF
218
221
    
 
222
    if tty --quiet; then
 
223
        cat <<-EOF
 
224
        Note: Due to entropy requirements, key generation could take
 
225
        anything from a few minutes to SEVERAL HOURS.  Please be
 
226
        patient and/or supply the system with more entropy if needed.
 
227
        EOF
 
228
        echo -n "Started: "
 
229
        date
 
230
    fi
 
231
    
219
232
    # Generate a new key in the key rings
220
233
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
221
234
        --homedir "$RINGDIR" --trust-model always \
222
235
        --gen-key "$BATCHFILE"
223
236
    rm --force "$BATCHFILE"
224
237
    
 
238
    if tty --quiet; then
 
239
        echo -n "Finished: "
 
240
        date
 
241
    fi
 
242
    
225
243
    # Backup any old key files
226
244
    if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
227
245
        2>/dev/null; then
277
295
        stty -echo
278
296
        echo -n "Enter passphrase: " >&2
279
297
        first="$(head --lines=1 | tr --delete '\n')"
280
 
        echo -n -e "\nRepeat passphrase: " >&2
 
298
        echo >&2
 
299
        echo -n "Repeat passphrase: " >&2
281
300
        second="$(head --lines=1 | tr --delete '\n')"
282
301
        echo >&2
283
302
        stty echo
284
303
        if [ "$first" != "$second" ]; then
285
 
            echo -e "Passphrase mismatch" >&2
286
 
            false
 
304
            echo "Passphrase mismatch" >&2
 
305
            touch "$RINGDIR"/mismatch
287
306
        else
288
307
            echo -n "$first"
289
308
        fi
290
309
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
291
310
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
292
 
        --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
 
311
        --sign --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
293
312
        > "$SECFILE"
294
 
    status="${PIPESTATUS[0]}"
295
 
    if [ "$status" -ne 0 ]; then
296
 
        exit "$status"
 
313
    if [ -e "$RINGDIR"/mismatch ]; then
 
314
        rm --force "$RINGDIR"/mismatch
 
315
        exit 1
297
316
    fi
298
317
    
299
318
    cat <<-EOF