/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: 2008-09-19 23:31:34 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080919233134-h56et87wkgisbk85
* mandos-keygen: New "--passfile" option.  Confirm entered password.

* mandos-keygen.xml (SYNOPSIS, OPTIONS): New "--passfile" option.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
fi
41
41
 
42
42
# Parse options
43
 
TEMP=`getopt --options vhd:t:l:n:e:c:x:f \
44
 
    --longoptions version,help,password,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force \
 
43
TEMP=`getopt --options vhpF:d:t:l:s:L:n:e:c:x:f \
 
44
    --longoptions version,help,password,passfile:,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force \
45
45
    --name "$0" -- "$@"`
46
46
 
47
47
help(){
53
53
       $basename [ OPTIONS ]
54
54
   Encrypted password creation:
55
55
       $basename { -p | --password } [ --name NAME ] [ --dir DIR]
 
56
       $basename { -F | --passfile } FILE [ --name NAME ] [ --dir DIR]
56
57
 
57
58
Key creation options:
58
59
  -v, --version         Show program's version number and exit
74
75
  -x TIME, --expire TIME
75
76
                        Key expire time.  Default is no expiration.
76
77
                        See gpg(1) for syntax.
77
 
  -f, --force           Force overwriting old keys.
 
78
  -f, --force           Force overwriting old key files.
78
79
 
79
80
Password creation options:
80
 
  -p, --password        Create an encrypted password using the keys in
 
81
  -p, --password        Create an encrypted password using the key in
 
82
                        the key directory.  All options other than
 
83
                        --dir and --name are ignored.
 
84
  -F FILE, --passfile FILE
 
85
                        Encrypt a password from FILE using the key in
81
86
                        the key directory.  All options other than
82
87
                        --dir and --name are ignored.
83
88
EOF
87
92
while :; do
88
93
    case "$1" in
89
94
        -p|--password) mode=password; shift;;
 
95
        -F|--passfile) mode=password; PASSFILE="$2"; shift 2;;
90
96
        -d|--dir) KEYDIR="$2"; shift 2;;
91
97
        -t|--type) KEYTYPE="$2"; shift 2;;
92
98
        -s|--subtype) SUBKEYTYPE="$2"; shift 2;;
235
241
        FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
236
242
    fi
237
243
    
238
 
    # Export keys from key rings to key files
 
244
    # Export key from key rings to key files
239
245
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
240
246
        --homedir "$RINGDIR" --armor --export-options export-minimal \
241
247
        --comment "$FILECOMMENT" --output "$SECKEYFILE" \
246
252
fi
247
253
 
248
254
if [ "$mode" = password ]; then
249
 
    # Import keys into temporary key rings
 
255
    # Import key into temporary key rings
250
256
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
251
257
        --homedir "$RINGDIR" --trust-model always --armor \
252
258
        --import "$SECKEYFILE"
265
271
    
266
272
    FILECOMMENT="Encrypted password for a Mandos client"
267
273
    
268
 
    stty -echo
269
 
    echo -n "Enter passphrase: " >&2
270
 
    head --lines=1 | tr --delete '\n' \
271
 
        | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
274
    if [ -n "$PASSFILE" ]; then
 
275
        cat "$PASSFILE"
 
276
    else
 
277
        stty -echo
 
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')"
 
282
        echo >&2
 
283
        stty echo
 
284
        if [ "$first" != "$second" ]; then
 
285
            echo -e "Passphrase mismatch" >&2
 
286
            false
 
287
        else
 
288
            echo -n "$first"
 
289
        fi
 
290
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
272
291
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
273
292
        --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
274
293
        > "$SECFILE"
275
 
    echo >&2
276
 
    stty echo
 
294
    status="${PIPESTATUS[0]}"
 
295
    if [ "$status" -ne 0 ]; then
 
296
        exit "$status"
 
297
    fi
277
298
    
278
299
    cat <<-EOF
279
300
        [$KEYNAME]
280
301
        host = $KEYNAME
281
302
        fingerprint = $FINGERPRINT
282
303
        secret =
283
 
EOF
 
304
        EOF
284
305
    sed --quiet --expression='
285
306
        /^-----BEGIN PGP MESSAGE-----$/,/^-----END PGP MESSAGE-----$/{
286
307
            /^$/,${