3
3
# Mandos key generator - create a new OpenPGP key for a Mandos client
 
5
 
# Copyright © 2007-2008 Teddy Hogeborn & Björn Påhlsson
 
 
5
# Copyright © 2008-2012 Teddy Hogeborn
 
 
6
# Copyright © 2008-2012 Björn Påhlsson
 
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
 
 
17
18
# You should have received a copy of the GNU General Public License
 
18
19
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
 
# Contact the authors at <mandos@fukt.bsnet.se>.
 
 
21
# Contact the authors at <mandos@recompile.se>.
 
25
26
KEYDIR="/etc/keys/mandos"
 
 
191
192
shred --remove \"$RINGDIR\"/sec*;
 
192
193
test -n \"$BATCHFILE\" && rm --force \"$BATCHFILE\"; \
 
193
194
rm --recursive --force \"$RINGDIR\";
 
 
195
tty --quiet && stty echo; \
 
199
202
if [ "$mode" = keygen ]; then
 
 
 
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.
 
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"
 
225
243
    # Backup any old key files
 
226
244
    if cp --backup=numbered --force "$SECKEYFILE" "$SECKEYFILE" \
 
227
245
        2>/dev/null; then
 
 
272
290
    FILECOMMENT="Encrypted password for a Mandos client"
 
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
 
 
292
    while [ ! -s "$SECFILE" ]; do
 
 
293
        if [ -n "$PASSFILE" ]; then
 
 
296
            tty --quiet && stty -echo
 
 
297
            read -p "Enter passphrase: " first
 
 
298
            tty --quiet && echo >&2
 
 
299
            read -p "Repeat passphrase: " second
 
 
304
            if [ "$first" != "$second" ]; then
 
 
305
                echo "Passphrase mismatch" >&2
 
 
306
                touch "$RINGDIR"/mismatch
 
 
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
 
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